Home
last modified time | relevance | path

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

/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/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()
3064 SmallVector<Decl *, 8> DeclsInGroup; in ActOnForwardClassDeclaration() local
3151 DeclsInGroup.push_back(IDecl); in ActOnForwardClassDeclaration()
[all …]
/freebsd-14.2/contrib/llvm-project/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()
2920 SmallVector<Decl *, 8> DeclsInGroup; in ParseCXXClassMemberDeclaration() local
3159 DeclsInGroup.push_back(ThisDecl); in ParseCXXClassMemberDeclaration()
3215 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCXXClassMemberDeclaration()
H A DParseDecl.cpp2336 SmallVector<Decl *, 8> DeclsInGroup; in ParseDeclGroup() local
2343 DeclsInGroup.push_back(FirstDecl); in ParseDeclGroup()
2393 DeclsInGroup.push_back(ThisDecl); in ParseDeclGroup()
2411 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseDeclGroup()
5591 SmallVector<Decl *, 2> DeclsInGroup; in ParseTopLevelStmtDecl() local
5592 DeclsInGroup.push_back(Actions.ActOnTopLevelStmtDecl(R.get())); in ParseTopLevelStmtDecl()
5597 cast<TopLevelStmtDecl>(DeclsInGroup.back())->setSemiMissing(); in ParseTopLevelStmtDecl()
5602 DeclsInGroup.push_back(Actions.ActOnTopLevelStmtDecl(S)); in ParseTopLevelStmtDecl()
5604 return Actions.BuildDeclaratorGroup(DeclsInGroup); in ParseTopLevelStmtDecl()
H A DParseStmt.cpp1195 SmallVector<Decl *, 8> DeclsInGroup; in ParseCompoundStatementBody() local
1204 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
1212 Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup); in ParseCompoundStatementBody()
H A DParseObjc.cpp2278 SmallVector<Decl *, 8> DeclsInGroup; in ParseObjCAtImplementationDeclaration() local
2289 DeclsInGroup.append(DG.begin(), DG.end()); in ParseObjCAtImplementationDeclaration()
2294 return Actions.ActOnFinishObjCImplementation(ObjCImpDecl, DeclsInGroup); in ParseObjCAtImplementationDeclaration()