Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParser.cpp633 Decl *SingleDecl = nullptr; in ParseExternalDeclaration() local
680 SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(), in ParseExternalDeclaration()
720 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc); in ParseExternalDeclaration()
732 SingleDecl = ParseObjCMethodDefinition(); in ParseExternalDeclaration()
813 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseExternalDeclaration()
DParseObjc.cpp57 Decl *SingleDecl = nullptr; in ParseObjCAtDirectives() local
63 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs); in ParseObjCAtDirectives()
75 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc); in ParseObjCAtDirectives()
78 SingleDecl = ParseObjCPropertySynthesize(AtLoc); in ParseObjCAtDirectives()
81 SingleDecl = ParseObjCPropertyDynamic(AtLoc); in ParseObjCAtDirectives()
92 SingleDecl = nullptr; in ParseObjCAtDirectives()
95 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseObjCAtDirectives()
DParseDecl.cpp1486 Decl *SingleDecl = nullptr; in ParseDeclaration() local
1492 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd); in ParseDeclaration()
1507 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(), in ParseDeclaration()
1513 SingleDecl = ParseStaticAssertDeclaration(DeclEnd); in ParseDeclaration()
1522 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType); in ParseDeclaration()
/external/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp1275 TEST(SingleDecl, IsSingleDecl) { in TEST() argument
/external/clang/lib/Sema/
DSemaCodeComplete.cpp369 iterator(const NamedDecl *SingleDecl, unsigned Index) in iterator() argument
370 : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) { } in iterator()