31 references to GetDisplayName
ILCompiler.Compiler (31)
Compiler\BodySubstitutionParser.cs (2)
64LogWarning(methodNav, DiagnosticId.XmlCouldNotFindMethodOnType, signature, type.GetDisplayName()); 115LogWarning(fieldNav, DiagnosticId.XmlCouldNotFindFieldOnType, name, type.GetDisplayName());
Compiler\Dataflow\CompilerGeneratedState.cs (3)
194AddWarning(new MessageOrigin(method), DiagnosticId.MethodsAreAssociatedWithUserMethod, method.GetDisplayName(), alreadyAssociatedMethod.GetDisplayName(), generatedType.GetDisplayName()); 262AddWarning(new MessageOrigin(method), DiagnosticId.MethodsAreAssociatedWithStateMachine, method.GetDisplayName(), alreadyAssociatedMethod.GetDisplayName(), stateMachineType.GetDisplayName()); 366AddWarning(new MessageOrigin(method), DiagnosticId.MethodsAreAssociatedWithUserMethod, method.GetDisplayName(), alreadyAssociatedMethod.GetDisplayName(), generatedType.GetDisplayName());
Compiler\Dataflow\DiagnosticUtilities.cs (1)
33return ((TypeDesc)parent).GetDisplayName();
Compiler\Dataflow\HandleCallAction.cs (2)
518calledMethod.Method.Instantiation[0].GetDisplayName()); 536calledMethod.Method.Instantiation[0].GetDisplayName());
Compiler\Dataflow\MethodBodyScanner.cs (1)
216$"""In method {method.OwningMethod.GetDisplayName()}, local variable V_{localVariableIndex} references {displayName} of type {localReference.ReferencedType.GetDisplayName()} which is a reference. Dataflow tracking has failed.""",
Compiler\Dataflow\ReflectionMarker.cs (2)
379_logger.LogWarning(origin, id, _typeHierarchyDataFlowOrigin.GetDisplayName(), 389_logger.LogWarning(origin, id, _typeHierarchyDataFlowOrigin.GetDisplayName(), entity.GetDisplayName());
Compiler\DependencyAnalysis\DynamicDependencyAttributesOnEntityNode.cs (2)
159targetType.GetDisplayName()); 208targetType.GetDisplayName());
Compiler\DescriptorMarker.cs (4)
185LogWarning(nav, DiagnosticId.TypeHasNoFieldsToPreserve, type.GetDisplayName()); 191LogWarning(nav, DiagnosticId.TypeHasNoMethodsToPreserve, type.GetDisplayName()); 295LogWarning(nav, DiagnosticId.XmlCouldNotFindGetAccesorOfPropertyOnType, property.Name, type.GetDisplayName()); 304LogWarning(nav, DiagnosticId.XmlCouldNotFindSetAccesorOfPropertyOnType, property.Name, type.GetDisplayName());
src\runtime\src\coreclr\tools\Common\Compiler\Dataflow\TypeProxy.cs (1)
45public string GetDisplayName() => Type.GetDisplayName();
src\runtime\src\coreclr\tools\Common\Compiler\DisplayNameHelpers.cs (5)
20TypeDesc type => type.GetDisplayName(), 33sb.Append(method.OwningType.GetDisplayName()); 120return new StringBuilder(field.OwningType.GetDisplayName()) 128return new StringBuilder(property.OwningType.GetDisplayName()) 135return new StringBuilder(@event.OwningType.GetDisplayName())
src\runtime\src\coreclr\tools\Common\Compiler\ProcessLinkerXmlBase.cs (8)
290LogWarning(nav, DiagnosticId.XmlCouldNotFindFieldOnType, signature, type.GetDisplayName()); 315LogWarning(nav, DiagnosticId.XmlCouldNotFindFieldOnType, name, type.GetDisplayName()); 356LogWarning(nav, DiagnosticId.XmlCouldNotFindMethodOnType, signature, type.GetDisplayName()); 379LogWarning(nav, DiagnosticId.XmlCouldNotFindMethodOnType, name, type.GetDisplayName()); 408LogWarning(nav, DiagnosticId.XmlCouldNotFindEventOnType, signature, type.GetDisplayName()); 433LogWarning(nav, DiagnosticId.XmlCouldNotFindEventOnType, name, type.GetDisplayName()); 468LogWarning(nav, DiagnosticId.XmlCouldNotFindPropertyOnType, signature, type.GetDisplayName()); 489LogWarning(nav, DiagnosticId.XmlCouldNotFindPropertyOnType, name, type.GetDisplayName());