/external/clang/lib/StaticAnalyzer/Checkers/ |
ArrayBoundChecker.cpp | 31 void checkLocation(SVal l, bool isLoad, const Stmt* S, 36 void ArrayBoundChecker::checkLocation(SVal l, bool isLoad, const Stmt* LoadS,
|
UndefinedAssignmentChecker.cpp | 30 void checkBind(SVal location, SVal val, const Stmt *S, 36 const Stmt *StoreE,
|
DirectIvarAssignment.cpp | 76 void VisitStmt(const Stmt *S) { VisitChildren(S); } 80 void VisitChildren(const Stmt *S) { 81 for (Stmt::const_child_range I = S->children(); I; ++I) 148 const Stmt *Body = M->getBody();
|
TraversalChecker.cpp | 30 void checkBranchCondition(const Stmt *Condition, CheckerContext &C) const; 35 void TraversalDumper::checkBranchCondition(const Stmt *Condition, 39 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
tree-iterator.h | 86 return &i.ptr->stmt; 92 return i.ptr->stmt;
|
ipa-ref.h | 42 gimple stmt; variable
|
tree-flow.h | 39 gimple stmt; variable 90 /* Map gimple stmt to tree label (or list of labels) for transaction 198 this marker node is uniquely identified by having null stmt *and* a 217 /* This node is inserted and used to mark the end of the uses for a stmt. */ 233 /* Use this iterator to visit each stmt which has a use of SSAVAR. */ 235 #define FOR_EACH_IMM_USE_STMT(STMT, ITER, SSAVAR) \ 236 for ((STMT) = first_imm_use_stmt (&(ITER), (SSAVAR)); \ 238 (void) ((STMT) = next_imm_use_stmt (&(ITER)))) 251 get access to each occurrence of ssavar on the stmt returned by 254 FOR_EACH_IMM_USE_STMT (stmt, iter, var [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_except.py | 71 for i, stmt in enumerate(suite_stmts): 72 if isinstance(stmt, pytree.Node):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_except.py | 71 for i, stmt in enumerate(suite_stmts): 72 if isinstance(stmt, pytree.Node):
|
/external/clang/include/clang/AST/ |
Expr.h | 22 #include "clang/AST/Stmt.h" 100 /// Stmt. This allows an expression to be transparently used any place a Stmt 103 class Expr : public Stmt { 109 : Stmt(SC) 121 explicit Expr(StmtClass SC, EmptyShell) : Stmt(SC) { } 688 return cast<Expr>(Stmt::IgnoreImplicit()); 796 static bool classof(const Stmt *T) { [all...] |
CMakeLists.txt | 21 clang_tablegen(StmtNodes.inc -gen-clang-stmt-nodes
|
DataRecursiveASTVisitor.h | 28 #include "clang/AST/Stmt.h" 82 /// the node's dynamic type, until the top-most class (e.g. Stmt, 94 /// TraverseStmt(Stmt *x) and TraverseType(QualType x) work 158 bool TraverseStmt(Stmt *S); 265 // Declare Traverse*() for all concrete Stmt classes. 266 #define ABSTRACT_STMT(STMT) 267 #define STMT(CLASS, PARENT) bool Traverse##CLASS(CLASS *S); 269 // The above header #undefs ABSTRACT_STMT and STMT upon exit. 271 // Define WalkUpFrom*() and empty Visit*() for all Stmt classes. 272 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); [all...] |
/external/checkpolicy/ |
policy_define.h | 17 avrule_t *define_cond_pol_list(avrule_t *avlist, avrule_t *stmt);
|
/external/clang/lib/AST/ |
Android.mk | 72 Stmt.cpp \
|
/external/clang/lib/Analysis/ |
CallGraph.cpp | 39 void VisitStmt(Stmt *S) { VisitChildren(S); } 85 void VisitChildren(Stmt *S) { 86 for (Stmt::child_range I = S->children(); I; ++I) 144 if (Stmt *Body = D->getBody())
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
graminit.h | 14 #define stmt 267 macro
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
graminit.h | 14 #define stmt 267 macro
|
/external/chromium_org/third_party/sqlite/src/test/ |
vtabA.test | 25 set STMT [sqlite3_prepare $::DB "SELECT $col FROM $table" -1 TAIL] 26 set decltype [sqlite3_column_decltype $STMT 0] 27 sqlite3_finalize $STMT
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SubEngine.h | 25 class Stmt; 68 virtual void processBranch(const Stmt *Condition, const Stmt *Term,
|
/external/clang/lib/ARCMigrate/ |
Internals.h | 21 class Stmt; 65 void removeStmt(Stmt *S); 68 void replaceStmt(Stmt *S, StringRef text);
|
TransProtectedScope.cpp | 67 Stmt *Parent = getCaseParent(Curr); 87 Stmt *getCaseParent(SwitchCase *S) { 88 Stmt *Parent = PMap.getParent(S);
|
/external/lldb/source/Expression/ |
ASTStructExtractor.cpp | 17 #include "clang/AST/Stmt.h" 65 Stmt *body_stmt = F->getBody(); 79 Stmt *curr_stmt = *bi;
|
/frameworks/compile/slang/ |
slang_rs_object_ref_count.h | 30 class Stmt; 69 static clang::Stmt *ClearRSObject(clang::VarDecl *VD, 143 void VisitStmt(clang::Stmt *S);
|
/ndk/sources/host-tools/nawk-20071023/ |
awkgram.y | 68 %type <p> simple_stmt opt_simple_stmt stmt stmtlist 124 FOR '(' opt_simple_stmt ';' opt_nl pattern ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt 126 | FOR '(' opt_simple_stmt ';' ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt 128 | FOR '(' varname IN varname rparen {inloop++;} stmt 316 stmt: label 321 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st 326 | if stmt else stmt { $$ = stat3(IF, $1, $2, $4); } 327 | if stmt { $$ = stat3(IF, $1, $2, NIL); } 338 | while {inloop++;} stmt { --inloop; $$ = stat2(WHILE, $1, $3); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 30 file_input: (NEWLINE | stmt)* ENDMARKER 52 stmt: simple_stmt | compound_stmt 99 suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
|