2 instantiations of TypeNameBuilder
Microsoft.Diagnostics.DataContractReader.Legacy (2)
TypeNameBuilder.cs (2)
194TypeNameBuilder builder = new(stringBuilder, target, format); 334TypeNameBuilder tnb = new(stringBuilder, target, format, initialStateIsName: true);
15 references to TypeNameBuilder
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataMethodDefinition.cs (1)
271TypeNameBuilder.AppendMethodInternal(
ClrDataMethodInstance.cs (1)
113TypeNameBuilder.AppendMethodInternal(
SOSDacImpl.cs (4)
2605TypeNameBuilder.AppendMethodInternal(_target, stringBuilder, methodDescHandle, TypeNameFormat.FormatSignature | TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 2615TypeNameBuilder.AppendMethodInternal(_target, stringBuilder, methodDescHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 2957TypeNameBuilder.AppendType(_target, methodTableName, methodTableHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 3273TypeNameBuilder.AppendType(_target, classNameBuilder, typeHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst);
SOSDacImpl.IXCLRDataProcess.cs (1)
135TypeNameBuilder.AppendMethodInternal(_target, sb, mdh, TypeNameFormat.FormatSignature
TypeNameBuilder.cs (8)
194TypeNameBuilder builder = new(stringBuilder, target, format); 198private static void AppendTypeCore(ref TypeNameBuilder tnb, Contracts.TypeHandle typeHandle, ReadOnlySpan<Contracts.TypeHandle> instantiation, TypeNameFormat format) 334TypeNameBuilder tnb = new(stringBuilder, target, format, initialStateIsName: true); 338private static void AppendInst(ref TypeNameBuilder tnb, ReadOnlySpan<TypeHandle> inst, TypeNameFormat format) 509private static void AppendContinuationName(ref TypeNameBuilder tnb, IRuntimeTypeSystem typeSystemContract, TypeHandle typeHandle) 533private static void AppendNestedTypeDef(ref TypeNameBuilder tnb, MetadataReader reader, TypeDefinitionHandle typeDefToken, TypeNameFormat format) 553private static void AppendTypeDef(ref TypeNameBuilder tnb, MetadataReader reader, TypeDefinition typeDef, TypeNameFormat format) 563private static void AppendParamTypeQualifier(ref TypeNameBuilder tnb, CorElementType kind, uint rank)