Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclObjC.cpp1793 SmallVector<Decl *, 8> DeclsInGroup; in ActOnForwardProtocolDeclaration() local
1812 DeclsInGroup.push_back(PDecl); in ActOnForwardProtocolDeclaration()
1815 return BuildDeclaratorGroup(DeclsInGroup); in ActOnForwardProtocolDeclaration()
2117 SmallVector<Decl *, 64> DeclsInGroup; in ActOnFinishObjCImplementation() local
2118 DeclsInGroup.reserve(Decls.size() + 1); in ActOnFinishObjCImplementation()
2126 DeclsInGroup.push_back(Dcl); in ActOnFinishObjCImplementation()
2129 DeclsInGroup.push_back(ObjCImpDecl); in ActOnFinishObjCImplementation()
2131 return BuildDeclaratorGroup(DeclsInGroup); in ActOnFinishObjCImplementation()
3065 SmallVector<Decl *, 8> DeclsInGroup; in ActOnForwardClassDeclaration() local
3152 DeclsInGroup.push_back(IDecl); in ActOnForwardClassDeclaration()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDeclCXX.cpp815 SmallVector<Decl *, 8> DeclsInGroup; in ParseUsingDeclaration() local
840 DeclsInGroup.push_back(UD); in ParseUsingDeclaration()
851 if (DeclsInGroup.size() > 1) in ParseUsingDeclaration()
865 return Actions.BuildDeclaratorGroup(DeclsInGroup); in ParseUsingDeclaration()
2873 SmallVector<Decl *, 8> DeclsInGroup; in ParseCXXClassMemberDeclaration() local
3110 DeclsInGroup.push_back(ThisDecl); in ParseCXXClassMemberDeclaration()
3166 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCXXClassMemberDeclaration()
H A DParseStmt.cpp1145 SmallVector<Decl *, 8> DeclsInGroup; in ParseCompoundStatementBody() local
1154 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
1162 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCompoundStatementBody()
H A DParseDecl.cpp2195 SmallVector<Decl *, 8> DeclsInGroup; in ParseDeclGroup() local
2202 DeclsInGroup.push_back(FirstDecl); in ParseDeclGroup()
2252 DeclsInGroup.push_back(ThisDecl); in ParseDeclGroup()
2272 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseDeclGroup()
5395 SmallVector<Decl *, 2> DeclsInGroup; in ParseTopLevelStmtDecl() local
5396 DeclsInGroup.push_back(Actions.ActOnTopLevelStmtDecl(R.get())); in ParseTopLevelStmtDecl()
5399 DeclsInGroup.push_back(Actions.ActOnTopLevelStmtDecl(S)); in ParseTopLevelStmtDecl()
5401 return Actions.BuildDeclaratorGroup(DeclsInGroup); in ParseTopLevelStmtDecl()
H A DParseObjc.cpp2265 SmallVector<Decl *, 8> DeclsInGroup; in ParseObjCAtImplementationDeclaration() local
2276 DeclsInGroup.append(DG.begin(), DG.end()); in ParseObjCAtImplementationDeclaration()
2281 return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup); in ParseObjCAtImplementationDeclaration()