HomeSort by relevance Sort by last modified time
    Searched refs:NumExprs (Results 1 - 8 of 8) sorted by null

  /external/clang/lib/AST/
Stmt.cpp 422 unsigned NumExprs = NumOutputs + NumInputs;
425 this->Names = new (C) IdentifierInfo*[NumExprs];
426 std::copy(Names, Names + NumExprs, this->Names);
429 this->Exprs = new (C) Stmt*[NumExprs];
430 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
433 this->Constraints = new (C) StringLiteral*[NumExprs];
434 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
659 unsigned NumExprs = NumOutputs + NumInputs;
661 Names = new (C) IdentifierInfo*[NumExprs];
662 std::copy(names, names + NumExprs, Names)
    [all...]
Expr.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 429 unsigned NumExprs = Record[Idx++];
430 E->Exprs = new (Reader.getContext()) Stmt*[NumExprs];
431 for (unsigned i = 0; i != NumExprs; ++i)
433 E->NumExprs = NumExprs;
761 unsigned NumExprs = Record[Idx++];
762 while (NumExprs--)
    [all...]
ASTWriterStmt.cpp 378 Record.push_back(E->NumExprs);
379 for (unsigned i=0; i != E->NumExprs; ++i)
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
SemaExprCXX.cpp 820 unsigned NumExprs = exprs.size();
824 assert((!ListInitialization || (NumExprs == 1 && isa<InitListExpr>(Exprs[0])))
833 if (NumExprs == 1 && !ListInitialization) {
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 259 milliseconds