2 instantiations of TypeNameBuilder
Microsoft.Diagnostics.DataContractReader.Legacy (2)
TypeNameBuilder.cs (2)
195TypeNameBuilder builder = new(stringBuilder, target, format); 335TypeNameBuilder tnb = new(stringBuilder, target, format, initialStateIsName: true);
16 references to TypeNameBuilder
Microsoft.Diagnostics.DataContractReader.Legacy (16)
ClrDataMethodDefinition.cs (1)
316TypeNameBuilder.AppendMethodInternal(
ClrDataMethodInstance.cs (1)
156TypeNameBuilder.AppendMethodInternal(
SOSDacImpl.cs (4)
2610TypeNameBuilder.AppendMethodInternal(_target, stringBuilder, methodDescHandle, TypeNameFormat.FormatSignature | TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 2620TypeNameBuilder.AppendMethodInternal(_target, stringBuilder, methodDescHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 2962TypeNameBuilder.AppendType(_target, methodTableName, methodTableHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 3272TypeNameBuilder.AppendType(_target, classNameBuilder, typeHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst);
SOSDacImpl.IXCLRDataProcess.cs (1)
351TypeNameBuilder.AppendMethodInternal(_target, sb, mdh, TypeNameFormat.FormatSignature
TypeHandleExtensions.cs (1)
58TypeNameBuilder.AppendInst(target, result, instantiation, TypeNameFormat.FormatNamespace);
TypeNameBuilder.cs (8)
195TypeNameBuilder builder = new(stringBuilder, target, format); 199private static void AppendTypeCore(ref TypeNameBuilder tnb, ITypeHandle? typeHandle, ReadOnlySpan<ITypeHandle> instantiation, TypeNameFormat format) 335TypeNameBuilder tnb = new(stringBuilder, target, format, initialStateIsName: true); 339private static void AppendInst(ref TypeNameBuilder tnb, ReadOnlySpan<ITypeHandle> inst, TypeNameFormat format) 510private static void AppendContinuationName(ref TypeNameBuilder tnb, IRuntimeTypeSystem typeSystemContract, ITypeHandle typeHandle) 534private static void AppendNestedTypeDef(ref TypeNameBuilder tnb, MetadataReader reader, TypeDefinitionHandle typeDefToken, TypeNameFormat format) 554private static void AppendTypeDef(ref TypeNameBuilder tnb, MetadataReader reader, TypeDefinition typeDef, TypeNameFormat format) 564private static void AppendParamTypeQualifier(ref TypeNameBuilder tnb, CorElementType kind, uint rank)