2 instantiations of TypeNameBuilder
Microsoft.Diagnostics.DataContractReader.Legacy (2)
TypeNameBuilder.cs (2)
198TypeNameBuilder builder = new(stringBuilder, target, format); 338TypeNameBuilder 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)
2622TypeNameBuilder.AppendMethodInternal(_target, stringBuilder, methodDescHandle, TypeNameFormat.FormatSignature | TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 2632TypeNameBuilder.AppendMethodInternal(_target, stringBuilder, methodDescHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 2974TypeNameBuilder.AppendType(_target, methodTableName, methodTableHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst); 3288TypeNameBuilder.AppendType(_target, classNameBuilder, typeHandle, TypeNameFormat.FormatNamespace | TypeNameFormat.FormatFullInst);
SOSDacImpl.IXCLRDataProcess.cs (1)
135TypeNameBuilder.AppendMethodInternal(_target, sb, mdh, TypeNameFormat.FormatSignature
TypeNameBuilder.cs (8)
198TypeNameBuilder builder = new(stringBuilder, target, format); 202private static void AppendTypeCore(ref TypeNameBuilder tnb, Contracts.TypeHandle typeHandle, ReadOnlySpan<Contracts.TypeHandle> instantiation, TypeNameFormat format) 338TypeNameBuilder tnb = new(stringBuilder, target, format, initialStateIsName: true); 342private static void AppendInst(ref TypeNameBuilder tnb, ReadOnlySpan<TypeHandle> inst, TypeNameFormat format) 513private static void AppendContinuationName(ref TypeNameBuilder tnb, IRuntimeTypeSystem typeSystemContract, TypeHandle typeHandle) 537private static void AppendNestedTypeDef(ref TypeNameBuilder tnb, MetadataReader reader, TypeDefinitionHandle typeDefToken, TypeNameFormat format) 557private static void AppendTypeDef(ref TypeNameBuilder tnb, MetadataReader reader, TypeDefinition typeDef, TypeNameFormat format) 567private static void AppendParamTypeQualifier(ref TypeNameBuilder tnb, CorElementType kind, uint rank)