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

  /external/clang/lib/AST/
StmtObjC.cpp 37 Stmt **Stmts = getStmts();
38 Stmts[0] = atTryStmt;
40 Stmts[I + 1] = CatchStmts[I];
43 Stmts[NumCatchStmts + 1] = atFinallyStmt;
StmtCXX.cpp 47 Stmt **Stmts = reinterpret_cast<Stmt **>(this + 1);
48 Stmts[0] = tryBlock;
49 std::copy(handlers.begin(), handlers.end(), Stmts + 1);
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 155 const std::vector<Record*> Stmts
160 for (unsigned i = 0, e = Stmts.size(); i != e; ++i) {
161 Record *R = Stmts[i];
  /external/clang/lib/Analysis/
BodyFarm.cpp 105 CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
106 return new (C) CompoundStmt(C, Stmts, SourceLocation(), SourceLocation());
224 Stmt *Stmts[] = { B, CE };
225 CompoundStmt *CS = M.makeCompound(Stmts);
324 Stmt *Stmts[2];
325 Stmts[0] =
336 Stmts[1] = M.makeReturn(RetVal);
337 CompoundStmt *Body = M.makeCompound(Stmts);
  /external/clang/lib/Parse/
ParseStmt.cpp 42 StmtVector Stmts;
44 Stmts, AllowOpenMPStandalone ? ACK_StatementsOpenMPAnyExecutable
102 Parser::ParseStatementOrDeclaration(StmtVector &Stmts,
114 Stmts, Allowed, TrailingElseLoc, Attrs);
155 Parser::ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts,
288 ParseMicrosoftIfExistsStatement(Stmts);
376 return ParsePragmaLoopHint(Stmts, Allowed, TrailingElseLoc, Attrs);
592 StmtVector Stmts;
598 Stmts, /*Allowed=*/ACK_StatementsOpenMPNonStandalone, nullptr,
737 if (TopLevelCase.isInvalid()) // No parsed case stmts
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 134 SmallVector<Stmt *, 16> Stmts;
137 Stmts.push_back(Reader.ReadSubStmt());
138 S->setStmts(Reader.getContext(), Stmts);
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 124 SmallVector<Stmt *, 32> Stmts;
    [all...]
RewriteObjC.cpp 115 SmallVector<Stmt *, 32> Stmts;
    [all...]

Completed in 142 milliseconds