Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParser.cpp631 Decl *SingleDecl = nullptr; in ParseExternalDeclaration() local
673 SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(), in ParseExternalDeclaration()
713 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc); in ParseExternalDeclaration()
725 SingleDecl = ParseObjCMethodDefinition(); in ParseExternalDeclaration()
806 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseExternalDeclaration()
DParseObjc.cpp56 Decl *SingleDecl = nullptr; in ParseObjCAtDirectives() local
62 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs); in ParseObjCAtDirectives()
74 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc); in ParseObjCAtDirectives()
77 SingleDecl = ParseObjCPropertySynthesize(AtLoc); in ParseObjCAtDirectives()
80 SingleDecl = ParseObjCPropertyDynamic(AtLoc); in ParseObjCAtDirectives()
91 SingleDecl = nullptr; in ParseObjCAtDirectives()
94 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseObjCAtDirectives()
DParseDecl.cpp1455 Decl *SingleDecl = nullptr; in ParseDeclaration() local
1461 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd); in ParseDeclaration()
1476 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(), in ParseDeclaration()
1482 SingleDecl = ParseStaticAssertDeclaration(DeclEnd); in ParseDeclaration()
1491 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType); in ParseDeclaration()
/external/clang/lib/Sema/
DSemaCodeComplete.cpp370 iterator(const NamedDecl *SingleDecl, unsigned Index) in iterator() argument
371 : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) { } in iterator()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp3455 TEST(SingleDecl, IsSingleDecl) { in TEST() argument