| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenACCClause.h | 674 return getNumExprs(); in numTrailingObjects() 677 unsigned getNumExprs() const { return getExprs().size(); } in getNumExprs() function 683 for (unsigned I = 0; I < getNumExprs(); ++I) { in hasExprOfKind()
|
| H A D | Expr.h | 6038 unsigned getNumExprs() const { return ParenListExprBits.NumExprs; } in getNumExprs() function 6041 assert(Init < getNumExprs() && "Initializer access out of range!"); in getExpr() 6051 ArrayRef<Expr *> exprs() { return {getExprs(), getNumExprs()}; } in exprs() 6064 return child_range(getTrailingObjects(getNumExprs())); in children() 6067 return const_child_range(getTrailingObjects(getNumExprs())); in children()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenACCClause.cpp | 922 if (C.getNumExprs() > 0) { in VisitGangClause() 925 for (unsigned I = 0; I < C.getNumExprs(); ++I) { in VisitGangClause()
|
| H A D | DeclPrinter.cpp | 409 NumArgs = ParenList->getNumExprs(); in PrintConstructorInitializers()
|
| H A D | StmtProfile.cpp | 2736 for (unsigned I = 0; I < Clause.getNumExprs(); ++I) { in VisitGangClause()
|
| H A D | StmtPrinter.cpp | 1929 for (unsigned i = 0, e = Node->getNumExprs(); i != e; ++i) { in VisitParenListExpr()
|
| H A D | TextNodeDumper.cpp | 448 for (unsigned I = 0; I < GC->getNumExprs(); ++I) { in Visit()
|
| H A D | ItaniumMangle.cpp | 5222 for (unsigned i = 0, e = PLE->getNumExprs(); i != e; ++i) in mangleExpression()
|
| H A D | ASTImporter.cpp | 8013 SmallVector<Expr *, 4> ToExprs(E->getNumExprs()); in VisitParenListExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenOpenACCClause.cpp | 748 if (clause.getNumExprs() == 0) { in VisitGangClause() 753 for (unsigned i : llvm::index_range(0u, clause.getNumExprs())) { in VisitGangClause()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenACCClause.cpp | 2146 for (unsigned I = 0; I < GangClause->getNumExprs(); ++I) { in CheckReductionClause()
|
| H A D | SemaLambda.cpp | 858 MultiExprArg(CXXDirectInit->getExprs(), CXXDirectInit->getNumExprs()); in buildLambdaInitCaptureInitialization()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 1144 assert(C.getNumExprs() <= 1 && in CLAUSE_NOT_ON_DECLS() 1147 if (C.getNumExprs() > 0) { in CLAUSE_NOT_ON_DECLS()
|
| H A D | SemaExprCXX.cpp | 2083 return IsCPlusPlus20 || PLE->getNumExprs() == 0; in isLegalArrayNewInitializer() 2156 Exprs = MultiExprArg(List->getExprs(), List->getNumExprs()); in BuildCXXNew()
|
| H A D | SemaExpr.cpp | 7847 if (PLE && PLE->getNumExprs() == 0) { in ActOnCastExpr() 7851 if (PE || PLE->getNumExprs() == 1) { in ActOnCastExpr() 7900 numExprs = PE->getNumExprs(); in BuildVectorLiteral() 7976 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) in MaybeConvertParenListExprToParenExpr()
|
| H A D | SemaCodeComplete.cpp | 5858 if (PLE->getNumExprs() == 0) in unwrapParenList() 5860 Base = PLE->getExpr(PLE->getNumExprs() - 1); in unwrapParenList()
|
| H A D | TreeTransform.h | 3327 TInfo, LParenLoc, MultiExprArg(PLE->getExprs(), PLE->getNumExprs()), in RebuildCXXFunctionalCastExpr() 12437 for (unsigned I = 0; I < C.getNumExprs(); ++I) { in VisitGangClause() 13934 if (TransformExprs(E->getExprs(), E->getNumExprs(), true, Inits, in TransformParenListExpr()
|
| H A D | SemaDeclCXX.cpp | 4581 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); in BuildMemberInitializer() 4661 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); in BuildDelegatingInitializer() 4808 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); in BuildBaseInitializer()
|
| H A D | SemaDecl.cpp | 13804 MultiExprArg(CXXDirectInit->getExprs(), CXXDirectInit->getNumExprs()); in AddInitializerToDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 807 Record.push_back(E->getNumExprs()); in VisitParenListExpr()
|
| H A D | ASTWriter.cpp | 8886 writeUInt32(GC->getNumExprs()); in writeOpenACCClause() 8887 for (unsigned I = 0; I < GC->getNumExprs(); ++I) { in writeOpenACCClause()
|
| H A D | ASTReaderStmt.cpp | 720 assert((NumExprs == E->getNumExprs()) && "Wrong NumExprs!"); in VisitParenListExpr()
|