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

  /external/clang/lib/AST/
Stmt.cpp 421 unsigned NumExprs = NumOutputs + NumInputs;
424 this->Names = new (C) IdentifierInfo*[NumExprs];
425 std::copy(Names, Names + NumExprs, this->Names);
428 this->Exprs = new (C) Stmt*[NumExprs];
429 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
432 this->Constraints = new (C) StringLiteral*[NumExprs];
433 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
658 unsigned NumExprs = NumOutputs + NumInputs;
660 Names = new (C) IdentifierInfo*[NumExprs];
661 std::copy(names, names + NumExprs, Names)
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 665 unsigned NumExprs = NumOutputs + NumInputs;
666 Names.resize(NumExprs);
667 ConstraintRefs.resize(NumExprs);
668 Exprs.resize(NumExprs);
669 for (unsigned i = 0, e = NumExprs; i != e; ++i) {
690 bool IsSimple = NumExprs > 0;
SemaExprCXX.cpp 801 unsigned NumExprs = exprs.size();
805 assert((!ListInitialization || (NumExprs == 1 && isa<InitListExpr>(Exprs[0])))
814 if (NumExprs == 1 && !ListInitialization) {
838 = NumExprs ? ListInitializatio
    [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;
763 unsigned NumExprs = Record[Idx++];
764 while (NumExprs--)
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 89 milliseconds