25 references to Identifier
Microsoft.Interop.ComInterfaceGenerator (9)
ComClassGenerator.cs (1)
93writer.WriteLine($"{string.Join(" ", classSyntax.Modifiers)} class {classSyntax.Identifier}{classSyntax.TypeParameters} {{ }}");
ComInterfaceGenerator.cs (3)
225TypeDeclaration(context.ContainingSyntax.TypeKind, context.ContainingSyntax.Identifier) 234TypeDeclaration(containingSyntax.TypeKind, containingSyntax.Identifier) 817IdentifierName($"ABI_{((SourceAvailableIncrementalMethodStubGenerationContext)declaredMethodContext.GenerationContext).StubMethodSyntaxTemplate.Identifier}")))));
VirtualMethodPointerStubGenerator.cs (4)
121return MethodDeclaration(stub.StubReturnType, stubMethodSyntax.Identifier) 147IdentifierName(methodStub.StubMethodSyntaxTemplate.Identifier))); 166MethodDeclaration(returnType, $"ABI_{methodStub.StubMethodSyntaxTemplate.Identifier.Text}") 254IdentifierName($"ABI_{method.StubMethodSyntaxTemplate.Identifier}")))))));
VtableIndexStubGenerator.cs (1)
377.WithBaseList(BaseList(SingletonSeparatedList((BaseTypeSyntax)SimpleBaseType(IdentifierName(context.ContainingSyntax[0].Identifier)))))
Microsoft.Interop.JavaScript.JSImportGenerator (2)
JSExportGenerator.cs (1)
337var wrapperName = "__Wrapper_" + incrementalContext.StubMethodSyntaxTemplate.Identifier + "_" + incrementalContext.SignatureContext.TypesHash;
JSImportGenerator.cs (1)
92MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.LibraryImportGenerator (4)
LibraryImportGenerator.cs (4)
157return MethodDeclaration(stub.StubReturnType, userDeclaredMethod.Identifier) 323pinvokeStub.StubMethodSyntaxTemplate.Identifier.Text); 338LibraryImportData pinvokeData = stub.LibraryImportData with { EntryPoint = stub.LibraryImportData.EntryPoint ?? userDeclaredMethod.Identifier.ValueText }; 354MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.LibraryImportGenerator.Downlevel (4)
DownlevelLibraryImportGenerator.cs (4)
143return MethodDeclaration(stub.StubReturnType, userDeclaredMethod.Identifier) 276pinvokeStub.StubMethodSyntaxTemplate.Identifier.Text); 291LibraryImportData pinvokeData = stub.LibraryImportData with { EntryPoint = stub.LibraryImportData.EntryPoint ?? userDeclaredMethod.Identifier.ValueText }; 302MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.SourceGeneration (6)
ContainingSyntaxContext.cs (6)
32&& Identifier.IsEquivalentTo(other.Identifier) 97code = HashCode.Combine(code, containingSyntax.Identifier.Value); 108TypeDeclarationSyntax type = TypeDeclaration(containingType.TypeKind, containingType.Identifier) 134TypeDeclarationSyntax type = TypeDeclaration(containingType.TypeKind, containingType.Identifier) 182writer.WriteLine($"{string.Join(" ", syntax.Modifiers.AddToModifiers(SyntaxKind.UnsafeKeyword))} {declarationKeyword} {syntax.Identifier}{syntax.TypeParameters}");