37 references to PortableCustomDebugInfoKinds
Microsoft.CodeAnalysis (21)
PEWriter\MetadataWriter.PortablePdb.cs (14)
148
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.PrimaryConstructorInformationBlob),
479
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.DefaultNamespace),
496
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.DynamicLocalVariables),
508
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.TupleElementNames),
596
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.AsyncMethodSteppingInformationBlob),
618
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.StateMachineHoistedLocalScopes),
778
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.EmbeddedSource),
818
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.EncLocalSlotMap),
830
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.EncLambdaAndClosureMap),
842
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.EncStateMachineStateMap),
864
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.SourceLink),
934
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.CompilationOptions),
1012
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.CompilationMetadataReferences),
1029
kind: _debugMetadataOpt.GetOrAddGuid(
PortableCustomDebugInfoKinds
.TypeDefinitionDocuments),
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoKind.cs (6)
48
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.StateMachineHoistedLocalScopes"/> in Portable PDB.
65
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.DynamicLocalVariables"/> in Portable PDB.
75
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.EncLocalSlotMap"/> in Portable PDB.
85
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.EncLambdaAndClosureMap"/> in Portable PDB.
94
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.TupleElementNames"/> in Portable PDB.
103
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.EncStateMachineStateMap"/> in Portable PDB.
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (1)
905
if (!pdbReader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition,
PortableCustomDebugInfoKinds
.CompilationOptions, out var customDebugInformation))
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (6)
PDB\CSharpDeterministicBuildCompilationTests.cs (2)
84
var metadataReferenceReader = DeterministicBuildCompilationTestHelpers.GetSingleBlob(
PortableCustomDebugInfoKinds
.CompilationMetadataReferences, pdbReader);
85
var compilationOptionsReader = DeterministicBuildCompilationTestHelpers.GetSingleBlob(
PortableCustomDebugInfoKinds
.CompilationOptions, pdbReader);
PDB\PDBSourceLinkTests.cs (1)
96
where pdbReader.GetGuid(cdi.Kind) ==
PortableCustomDebugInfoKinds
.SourceLink
PDB\PortablePdbTests.cs (2)
314
where pdbReader.GetGuid(cdi.Kind) ==
PortableCustomDebugInfoKinds
.SourceLink
357
where pdbReader.GetGuid(cdi.Kind) ==
PortableCustomDebugInfoKinds
.SourceLink
PDB\TypeDefinitionDocumentTests.cs (1)
478
where pdbReader.GetGuid(entry.Kind).Equals(
PortableCustomDebugInfoKinds
.TypeDefinitionDocuments)
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (5)
PDB\MethodDebugInfo.Portable.cs (5)
392
hoistedLocalScopes = reader.TryGetCustomDebugInformation(methodHandle,
PortableCustomDebugInfoKinds
.StateMachineHoistedLocalScopes, out var info)
397
defaultNamespace = reader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition,
PortableCustomDebugInfoKinds
.DefaultNamespace, out info)
401
isPrimaryConstructor = reader.TryGetCustomDebugInformation(methodHandle,
PortableCustomDebugInfoKinds
.PrimaryConstructorInformationBlob, out _);
407
if (reader.TryGetCustomDebugInformation(variableOrConstantHandle,
PortableCustomDebugInfoKinds
.DynamicLocalVariables, out var info))
418
if (reader.TryGetCustomDebugInformation(variableOrConstantHandle,
PortableCustomDebugInfoKinds
.TupleElementNames, out var info))
Microsoft.CodeAnalysis.Test.Utilities (2)
Metadata\MetadataReaderUtils.cs (2)
268
where reader.GetGuid(cdi.Kind) ==
PortableCustomDebugInfoKinds
.SourceLink
276
where reader.GetGuid(cdi.Kind) ==
PortableCustomDebugInfoKinds
.EmbeddedSource
Roslyn.Test.PdbUtilities (3)
Reader\PdbTestUtilities.cs (3)
48
compressedSlotMap: GetCdiBytes(
PortableCustomDebugInfoKinds
.EncLocalSlotMap),
49
compressedLambdaMap: GetCdiBytes(
PortableCustomDebugInfoKinds
.EncLambdaAndClosureMap),
50
compressedStateMachineStateMap: GetCdiBytes(
PortableCustomDebugInfoKinds
.EncStateMachineStateMap));