23 references to Identifier
Microsoft.Interop.ComInterfaceGenerator (8)
ComClassGenerator.cs (1)
71TypeDeclaration(classSyntax.TypeKind, classSyntax.Identifier)
ComInterfaceGenerator.cs (2)
149var typeDecl = TypeDeclaration(context.ContainingSyntax.TypeKind, context.ContainingSyntax.Identifier) 236TypeDeclaration(context.ContainingSyntax.TypeKind, context.ContainingSyntax.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)
432.WithBaseList(BaseList(SingletonSeparatedList((BaseTypeSyntax)SimpleBaseType(IdentifierName(context.ContainingSyntax[0].Identifier)))))
Microsoft.Interop.JavaScript.JSImportGenerator (2)
JSExportGenerator.cs (1)
366var wrapperName = "__Wrapper_" + incrementalContext.StubMethodSyntaxTemplate.Identifier + "_" + incrementalContext.SignatureContext.TypesHash;
JSImportGenerator.cs (1)
116MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.LibraryImportGenerator (4)
LibraryImportGenerator.cs (4)
179return MethodDeclaration(stub.StubReturnType, userDeclaredMethod.Identifier) 369pinvokeStub.StubMethodSyntaxTemplate.Identifier.Text); 384LibraryImportData pinvokeData = stub.LibraryImportData with { EntryPoint = stub.LibraryImportData.EntryPoint ?? userDeclaredMethod.Identifier.ValueText }; 417MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.LibraryImportGenerator.Downlevel (4)
DownlevelLibraryImportGenerator.cs (4)
121return MethodDeclaration(stub.StubReturnType, userDeclaredMethod.Identifier) 263pinvokeStub.StubMethodSyntaxTemplate.Identifier.Text); 278LibraryImportData pinvokeData = stub.LibraryImportData with { EntryPoint = stub.LibraryImportData.EntryPoint ?? userDeclaredMethod.Identifier.ValueText }; 296MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.SourceGeneration (5)
ContainingSyntaxContext.cs (5)
31&& Identifier.IsEquivalentTo(other.Identifier) 96code = HashCode.Combine(code, containingSyntax.Identifier.Value); 107TypeDeclarationSyntax type = TypeDeclaration(containingType.TypeKind, containingType.Identifier) 133TypeDeclarationSyntax type = TypeDeclaration(containingType.TypeKind, containingType.Identifier)