Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp4127 NumAssocs(AssocExprs.size()), ResultIndex(ResultIndex), in GenericSelectionExpr()
4132 assert(ResultIndex < NumAssocs && "ResultIndex is out-of-bounds!"); in GenericSelectionExpr()
4151 NumAssocs(AssocExprs.size()), ResultIndex(ResultDependentIndex), in GenericSelectionExpr()
4167 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs) in GenericSelectionExpr() argument
4168 : Expr(GenericSelectionExprClass, Empty), NumAssocs(NumAssocs) {} in GenericSelectionExpr()
4175 unsigned NumAssocs = AssocExprs.size(); in Create() local
4177 totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs), in Create()
4189 unsigned NumAssocs = AssocExprs.size(); in Create() local
4191 totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs), in Create()
4200 unsigned NumAssocs) { in CreateEmpty() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h5561 unsigned NumAssocs, ResultIndex; variable
5684 explicit GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs);
5704 unsigned NumAssocs);
5715 unsigned getNumAssocs() const { return NumAssocs; } in getNumAssocs()
5751 NumAssocs}; in getAssocExprs()
5754 return {getTrailingObjects<TypeSourceInfo *>(), NumAssocs}; in getAssocTypeSourceInfos()
5781 AssociationIterator End(Begin.E + NumAssocs, Begin.TSI + NumAssocs, in associations()
5782 /*Offset=*/NumAssocs, ResultIndex); in associations()
5791 ConstAssociationIterator End(Begin.E + NumAssocs, Begin.TSI + NumAssocs, in associations()
5792 /*Offset=*/NumAssocs, ResultIndex); in associations()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1354 unsigned NumAssocs = Record.readInt(); in VisitGenericSelectionExpr() local
1355 assert(NumAssocs == E->getNumAssocs() && "Wrong NumAssocs!"); in VisitGenericSelectionExpr()
1365 for (unsigned I = 0, N = NumAssocs + 1; I < N; ++I) in VisitGenericSelectionExpr()
1369 for (unsigned I = 0, N = NumAssocs; I < N; ++I) in VisitGenericSelectionExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp1580 unsigned NumAssocs = ArgTypes.size(); in ActOnGenericSelectionExpr() local
1581 assert(NumAssocs == ArgExprs.size()); in ActOnGenericSelectionExpr()
1583 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; in ActOnGenericSelectionExpr()
1584 for (unsigned i = 0; i < NumAssocs; ++i) { in ActOnGenericSelectionExpr()
1593 llvm::makeArrayRef(Types, NumAssocs), in ActOnGenericSelectionExpr()
1606 unsigned NumAssocs = Types.size(); in CreateGenericSelectionExpr() local
1607 assert(NumAssocs == Exprs.size()); in CreateGenericSelectionExpr()
1632 for (unsigned i = 0; i < NumAssocs; ++i) { in CreateGenericSelectionExpr()
1662 for (unsigned j = i+1; j < NumAssocs; ++j) in CreateGenericSelectionExpr()
1692 for (unsigned i = 0; i < NumAssocs; ++i) { in CreateGenericSelectionExpr()