Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterUtils.cpp40 SmallVector<Decl *, 1> DeclsInGroup; in CreateDGPtrFrom() local
41 DeclsInGroup.push_back(D); in CreateDGPtrFrom()
42 Sema::DeclGroupPtrTy DeclGroupPtr = S.BuildDeclaratorGroup(DeclsInGroup); in CreateDGPtrFrom()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp1790 SmallVector<Decl *, 8> DeclsInGroup; in ActOnForwardProtocolDeclaration() local
1808 DeclsInGroup.push_back(PDecl); in ActOnForwardProtocolDeclaration()
1811 return SemaRef.BuildDeclaratorGroup(DeclsInGroup); in ActOnForwardProtocolDeclaration()
2119 SmallVector<Decl *, 64> DeclsInGroup; in ActOnFinishObjCImplementation() local
2120 DeclsInGroup.reserve(Decls.size() + 1); in ActOnFinishObjCImplementation()
2128 DeclsInGroup.push_back(Dcl); in ActOnFinishObjCImplementation()
2131 DeclsInGroup.push_back(ObjCImpDecl); in ActOnFinishObjCImplementation()
2133 return SemaRef.BuildDeclaratorGroup(DeclsInGroup); in ActOnFinishObjCImplementation()
3065 SmallVector<Decl *, 8> DeclsInGroup; in ActOnForwardClassDeclaration() local
3151 DeclsInGroup.push_back(IDecl); in ActOnForwardClassDeclaration()
[all …]
/src/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp870 SmallVector<Decl *, 8> DeclsInGroup; in ParseUsingDeclaration() local
895 DeclsInGroup.push_back(UD); in ParseUsingDeclaration()
906 if (DeclsInGroup.size() > 1) in ParseUsingDeclaration()
920 return Actions.BuildDeclaratorGroup(DeclsInGroup); in ParseUsingDeclaration()
3085 SmallVector<Decl *, 8> DeclsInGroup; in ParseCXXClassMemberDeclaration() local
3326 DeclsInGroup.push_back(ThisDecl); in ParseCXXClassMemberDeclaration()
3392 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCXXClassMemberDeclaration()
H A DParseStmt.cpp1207 SmallVector<Decl *, 8> DeclsInGroup; in ParseCompoundStatementBody() local
1216 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
1224 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCompoundStatementBody()
H A DParseDecl.cpp2514 SmallVector<Decl *, 8> DeclsInGroup; in ParseDeclGroup() local
2521 DeclsInGroup.push_back(FirstDecl); in ParseDeclGroup()
2581 DeclsInGroup.push_back(ThisDecl); in ParseDeclGroup()
2599 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseDeclGroup()
5983 SmallVector<Decl *, 2> DeclsInGroup; in ParseTopLevelStmtDecl() local
5984 DeclsInGroup.push_back(TLSD); in ParseTopLevelStmtDecl()
5992 DeclsInGroup.push_back(D); in ParseTopLevelStmtDecl()
5995 return Actions.BuildDeclaratorGroup(DeclsInGroup); in ParseTopLevelStmtDecl()
H A DParseObjc.cpp2272 SmallVector<Decl *, 8> DeclsInGroup; in ParseObjCAtImplementationDeclaration() local
2283 DeclsInGroup.append(DG.begin(), DG.end()); in ParseObjCAtImplementationDeclaration()
2289 DeclsInGroup); in ParseObjCAtImplementationDeclaration()