Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/lib/Parse/
DParser.cpp650 Decl *SingleDecl = 0; in ParseExternalDeclaration() local
684 SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(), in ParseExternalDeclaration()
714 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc); in ParseExternalDeclaration()
726 SingleDecl = ParseObjCMethodDefinition(); in ParseExternalDeclaration()
812 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseExternalDeclaration()
DParseObjc.cpp55 Decl *SingleDecl = 0; in ParseObjCAtDirectives() local
61 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs); in ParseObjCAtDirectives()
73 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc); in ParseObjCAtDirectives()
76 SingleDecl = ParseObjCPropertySynthesize(AtLoc); in ParseObjCAtDirectives()
79 SingleDecl = ParseObjCPropertyDynamic(AtLoc); in ParseObjCAtDirectives()
90 SingleDecl = 0; in ParseObjCAtDirectives()
93 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseObjCAtDirectives()
DParseDecl.cpp1340 Decl *SingleDecl = 0; in ParseDeclaration() local
1346 SingleDecl = ParseDeclarationStartingWithTemplate(Context, DeclEnd); in ParseDeclaration()
1353 SingleDecl = ParseNamespace(Context, DeclEnd, InlineLoc); in ParseDeclaration()
1360 SingleDecl = ParseNamespace(Context, DeclEnd); in ParseDeclaration()
1363 SingleDecl = ParseUsingDirectiveOrDeclaration(Context, ParsedTemplateInfo(), in ParseDeclaration()
1369 SingleDecl = ParseStaticAssertDeclaration(DeclEnd); in ParseDeclaration()
1378 return Actions.ConvertDeclToDeclGroup(SingleDecl, OwnedType); in ParseDeclaration()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaCodeComplete.cpp370 iterator(const NamedDecl *SingleDecl, unsigned Index) in iterator() argument
371 : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) { } in iterator()