HomeSort by relevance Sort by last modified time
    Searched refs:Stmts (Results 1 - 10 of 10) 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/Parse/
ParseStmt.cpp 79 Parser::ParseStatementOrDeclaration(StmtVector &Stmts, bool OnlyStatement,
87 StmtResult Res = ParseStatementOrDeclarationAfterAttributes(Stmts,
100 Parser::ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts,
230 DeclGroupPtrTy Decl = ParseDeclaration(Stmts, Declarator::BlockContext,
597 if (TopLevelCase.isInvalid()) // No parsed case stmts.
745 StmtVector Stmts(Actions);
776 Stmts.push_back(R.release());
787 ParseMicrosoftIfExistsStatement(Stmts);
793 R = ParseStatementOrDeclaration(Stmts, false);
813 DeclGroupPtrTy Res = ParseDeclaration(Stmts,
    [all...]
Parser.cpp 647 StmtVector Stmts(Actions);
648 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
658 StmtVector Stmts(Actions);
659 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
670 StmtVector Stmts(Actions);
671 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
680 StmtVector Stmts(Actions);
681 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
    [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/AST/
Stmt.cpp 62 llvm::errs() << " " << sum << " stmts/exprs total.\n";
247 void CompoundStmt::setStmts(ASTContext &C, Stmt **Stmts, unsigned NumStmts) {
253 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts);
570 Stmt **Stmts = getStmts();
571 Stmts[0] = atTryStmt;
573 Stmts[I + 1] = CatchStmts[I];
576 Stmts[NumCatchStmts + 1] = atFinallyStmt;
635 Stmt **Stmts = reinterpret_cast<Stmt **>(this + 1);
636 Stmts[0] = tryBlock;
637 std::copy(handlers, handlers + NumHandlers, Stmts + 1)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp 120 SmallVector<Stmt *, 32> Stmts;
    [all...]
RewriteObjC.cpp 112 SmallVector<Stmt *, 32> Stmts;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 122 SmallVector<Stmt *, 16> Stmts;
125 Stmts.push_back(Reader.ReadSubStmt());
126 S->setStmts(Reader.getContext(), Stmts.data(), Stmts.size());
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 109 // Make vanilla 'new' and 'delete' illegal for Stmts.
112 llvm_unreachable("Stmts cannot be allocated with regular 'new'.");
115 llvm_unreachable("Stmts cannot be released with regular 'delete'.");
300 // Only allow allocation of Stmts using the allocator in ASTContext
570 void setStmts(ASTContext &C, Stmt **Stmts, unsigned NumStmts);
    [all...]

Completed in 376 milliseconds