Searched refs:NumExprs (Results 1 - 9 of 9) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp401 unsigned NumExprs = NumOutputs + NumInputs; local
404 this->Names = new (C) IdentifierInfo*[NumExprs];
405 std::copy(Names, Names + NumExprs, this->Names);
408 this->Exprs = new (C) Stmt*[NumExprs];
409 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
412 this->Constraints = new (C) StringLiteral*[NumExprs];
413 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
638 unsigned NumExprs = NumOutputs + NumInputs; local
640 Names = new (C) IdentifierInfo*[NumExprs];
641 std::copy(names, names + NumExprs, Name
682 unsigned NumExprs = exprs.size(); local
[all...]
H A DExpr.cpp1313 NumComps(comps.size()), NumExprs(exprs.size())
3597 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size())
3617 this->NumExprs = Exprs.size();
3618 SubExprs = new (C) Stmt*[NumExprs];
3868 NumExprs(exprs.size()), LParenLoc(lparenloc), RParenLoc(rparenloc) {
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h1856 unsigned NumExprs; member in class:clang::StringLiteral::OffsetOfExpr
1865 TSInfo(0), NumComps(numComps), NumExprs(numExprs) {}
1875 unsigned NumComps, unsigned NumExprs);
1907 assert(Idx < NumExprs && "Subscript out of range");
1922 return NumExprs;
1937 return child_range(begin, begin + NumExprs);
3417 unsigned NumExprs; member in class:clang::StringLiteral::OffsetOfExpr::ShuffleVectorExpr
3443 unsigned getNumSubExprs() const { return NumExprs; }
3450 assert((Index < NumExprs) && "Arg access out of range!");
3454 assert((Index < NumExprs)
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp514 unsigned NumExprs = Record[Idx++]; local
515 E->Exprs = new (Reader.getContext()) Stmt*[NumExprs];
516 for (unsigned i = 0; i != NumExprs; ++i)
518 E->NumExprs = NumExprs;
849 unsigned NumExprs = Record[Idx++]; local
850 while (NumExprs--)
H A DASTWriterStmt.cpp445 Record.push_back(E->NumExprs);
446 for (unsigned i=0; i != E->NumExprs; ++i)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp2214 unsigned NumExprs = NumOutputs + NumInputs;
2215 ConstraintRefs.resize(NumExprs);
2216 Exprs.resize(NumExprs);
2217 for (unsigned i = 0, e = NumExprs; i != e; ++i) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2691 bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall, argument
2694 if (NumExprs == 0)
2700 return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs);
/freebsd-9.3-release/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4218 unsigned NumExprs = NumOutputs + NumInputs; local
4219 OpDecls.resize(NumExprs);
4220 Constraints.resize(NumExprs);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h6484 /// \param NumExprs The number of expressions in \p Exprs.
6494 bool SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall,

Completed in 162 milliseconds