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

  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 105 const std::vector<Record*> Stmts
110 for (unsigned i = 0, e = Stmts.size(); i != e; ++i) {
111 Record *R = Stmts[i];
  /external/clang/lib/AST/
Stmt.cpp 62 llvm::errs() << " " << sum << " stmts/exprs total.\n";
183 void CompoundStmt::setStmts(ASTContext &C, Stmt **Stmts, unsigned NumStmts) {
189 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts);
506 Stmt **Stmts = getStmts();
507 Stmts[0] = atTryStmt;
509 Stmts[I + 1] = CatchStmts[I];
512 Stmts[NumCatchStmts + 1] = atFinallyStmt;
571 Stmt **Stmts = reinterpret_cast<Stmt **>(this + 1);
572 Stmts[0] = tryBlock;
573 std::copy(handlers, handlers + NumHandlers, Stmts + 1)
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 117 SmallVector<Stmt *, 16> Stmts;
120 Stmts.push_back(Reader.ReadSubStmt());
121 S->setStmts(Reader.getContext(), Stmts.data(), Stmts.size());
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 76 SmallVector<Stmt *, 32> Stmts;
    [all...]

Completed in 191 milliseconds