Home
last modified time | relevance | path

Searched refs:SingleDecl (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/lib/Parse/
H A DParser.cpp790 Decl *SingleDecl = nullptr; in ParseExternalDeclaration() local
854 SingleDecl = in ParseExternalDeclaration()
893 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc); in ParseExternalDeclaration()
905 SingleDecl = ParseObjCMethodDefinition(); in ParseExternalDeclaration()
925 SingleDecl = ParseModuleImport(SourceLocation(), IS); in ParseExternalDeclaration()
930 SingleDecl = ParseExportDeclaration(); in ParseExternalDeclaration()
1024 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseExternalDeclaration()
H A DParseObjc.cpp57 Decl *SingleDecl = nullptr; in ParseObjCAtDirectives() local
62 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, Attrs); in ParseObjCAtDirectives()
71 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc); in ParseObjCAtDirectives()
74 SingleDecl = ParseObjCPropertySynthesize(AtLoc); in ParseObjCAtDirectives()
77 SingleDecl = ParseObjCPropertyDynamic(AtLoc); in ParseObjCAtDirectives()
82 SingleDecl = ParseModuleImport(AtLoc, IS); in ParseObjCAtDirectives()
91 SingleDecl = nullptr; in ParseObjCAtDirectives()
94 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseObjCAtDirectives()
H A DParseDecl.cpp1771 Decl *SingleDecl = nullptr; in ParseDeclaration() local
1777 SingleDecl = in ParseDeclaration()
1804 SingleDecl = ParseStaticAssertDeclaration(DeclEnd); in ParseDeclaration()
1813 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseDeclaration()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCodeComplete.cpp633 iterator(const NamedDecl *SingleDecl, unsigned Index) in iterator() argument
634 : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) {} in iterator()
H A DTreeTransform.h12318 NamedDecl *SingleDecl = cast<NamedDecl>(InstD); in TransformOverloadExprDecls() local
12319 ArrayRef<NamedDecl*> Decls = SingleDecl; in TransformOverloadExprDecls()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersTraversalTest.cpp4680 TEST(SingleDecl, IsSingleDecl) { in TEST() argument