21 references to DottedName
ILLink.CodeFixProvider (1)
DynamicallyAccessedMembersCodeFixProvider.cs (1)
135SyntaxNode[] attributeArguments = [generator.AttributeArgument(generator.MemberAccessExpression(generator.DottedName("System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes"), stringArguments))];
Microsoft.CodeAnalysis.Analyzers (1)
MetaAnalyzers\Fixers\CompareSymbolsCorrectlyFix.cs (1)
295=> generator.MemberAccessExpression(generator.DottedName(CompareSymbolsCorrectlyAnalyzer.SymbolEqualityComparerName), "Default");
Microsoft.CodeAnalysis.CSharp.Workspaces (4)
CodeGeneration\CSharpSyntaxGenerator.cs (4)
2085BaseNamespaceDeclarationSyntax namespaceDeclaration => ReplaceWithTrivia(declaration, namespaceDeclaration.Name, this.DottedName(name)), 2086UsingDirectiveSyntax usingDeclaration => ReplaceWithTrivia(declaration, usingDeclaration.NamespaceOrType, this.DottedName(name)), 2095ReplaceWithTrivia(declaration, attributeList.Attributes[0].Name, this.DottedName(name)), 2097AttributeSyntax attribute => ReplaceWithTrivia(declaration, attribute.Name, this.DottedName(name)),
Microsoft.CodeAnalysis.VisualBasic.Workspaces (4)
CodeGeneration\VisualBasicSyntaxGenerator.vb (4)
2031Return ReplaceWithTrivia(declaration, DirectCast(declaration, NamespaceBlockSyntax).NamespaceStatement.Name, Me.DottedName(name)) 2043Return ReplaceWithTrivia(declaration, DirectCast(declaration, AttributeSyntax).Name, Me.DottedName(name)) 2047Return ReplaceWithTrivia(declaration, al.Attributes(0).Name, Me.DottedName(name)) 2055Return ReplaceWithTrivia(declaration, DirectCast(clause, SimpleImportsClauseSyntax).Name, Me.DottedName(name))
Microsoft.CodeAnalysis.Workspaces (4)
Editing\SyntaxGenerator.cs (4)
1002=> NamespaceDeclaration(DottedName(name), declarations); 1010=> NamespaceDeclaration(DottedName(name), (IEnumerable<SyntaxNode>)declarations); 1036=> NamespaceImportDeclaration(DottedName(name)); 1062=> Attribute(DottedName(name), attributeArguments);
Microsoft.Interop.ComInterfaceGenerator (4)
Analyzers\AddMarshalAsToElementFixer.cs (1)
55gen.DottedName(TypeNames.System_Runtime_InteropServices_UnmanagedType),
Analyzers\ConvertComImportToGeneratedComInterfaceFixer.cs (1)
90gen.AttributeArgument("StringMarshalling", gen.MemberAccessExpression(gen.DottedName(TypeNames.StringMarshalling), gen.IdentifierName(nameof(StringMarshalling.Custom)))),
src\runtime\src\libraries\System.Runtime.InteropServices\gen\Common\ConvertToSourceGeneratedInteropFixer.cs (2)
263generator.DottedName(TypeNames.System_Runtime_InteropServices_UnmanagedType), 292generator.DottedName(TypeNames.System_Runtime_InteropServices_UnmanagedType),
Microsoft.Interop.LibraryImportGenerator (3)
Analyzers\AddDisableRuntimeMarshallingAttributeFixer.cs (1)
66editor.Generator.Attribute(editor.Generator.DottedName(TypeNames.System_Runtime_CompilerServices_DisableRuntimeMarshallingAttribute))));
src\runtime\src\libraries\System.Runtime.InteropServices\gen\Common\ConvertToSourceGeneratedInteropFixer.cs (2)
263generator.DottedName(TypeNames.System_Runtime_InteropServices_UnmanagedType), 292generator.DottedName(TypeNames.System_Runtime_InteropServices_UnmanagedType),