HomeSort by: relevance | last modified time | path
    Searched refs:numExprs (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 1528 unsigned numComps, unsigned numExprs) {
1530 C.Allocate(totalSizeToAlloc<OffsetOfNode, Expr *>(numComps, numExprs));
1531 return new (Mem) OffsetOfExpr(numComps, numExprs);
1540 NumComps(comps.size()), NumExprs(exprs.size()) {
4103 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size()) {
4114 this->NumExprs = Exprs.size();
4115 SubExprs = new (C) Stmt*[NumExprs];
4377 ParenListExprBits.NumExprs = Exprs.size();
4384 ParenListExpr::ParenListExpr(EmptyShell Empty, unsigned NumExprs)
4386 ParenListExprBits.NumExprs = NumExprs
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 2385 unsigned NumExprs;
2396 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs)
2398 TSInfo(nullptr), NumComps(numComps), NumExprs(numExprs) {}
2408 unsigned NumComps, unsigned NumExprs);
2440 assert(Idx < NumExprs && "Subscript out of range");
2445 assert(Idx < NumExprs && "Subscript out of range");
2455 return NumExprs;
2468 return child_range(begin, begin + NumExprs);
2473 return const_child_range(begin, begin + NumExprs);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 7618 unsigned numExprs;
7625 numExprs = PE->getNumExprs();
7631 numExprs = 1;
7649 if (numExprs == 1) {
7658 else if (numExprs < numElems) {
7664 initExprs.append(exprs, exprs + numExprs);
7671 numExprs == 1) {
7681 initExprs.append(exprs, exprs + numExprs);

Completed in 49 milliseconds