/external/clang/lib/StaticAnalyzer/Checkers/ |
BoolAssignmentChecker.cpp | 29 void checkBind(SVal loc, SVal val, const Stmt *S, CheckerContext &C) const; 54 void BoolAssignmentChecker::checkBind(SVal loc, SVal val, const Stmt *S,
|
CheckerDocumentation.cpp | 65 /// callback can be specialized to be called with any subclass of Stmt. 78 /// callback can be specialized to be called with any subclass of Stmt. 117 void checkBranchCondition(const Stmt *Condition, CheckerContext &Ctx) const {} 128 void checkLocation(SVal Loc, bool IsLoad, const Stmt *S, 138 void checkBind(SVal Loc, SVal Val, const Stmt *S, CheckerContext &) const {}
|
LLVMConventionsChecker.cpp | 76 return RD->getName() == "Stmt" && InNamespace(RD, "clang"); 126 void VisitChildren(Stmt *S) { 127 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end() ; 129 if (Stmt *child = *I) 132 void VisitStmt(Stmt *S) { VisitChildren(S); }
|
/external/clang/tools/libclang/ |
IndexBody.cpp | 168 void IndexingContext::indexBody(const Stmt *S, const NamedDecl *Parent, 175 BodyIndexer(*this, Parent, DC).TraverseStmt(const_cast<Stmt*>(S));
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
dumpfile.h | 64 #define TDF_STMTADDR (1 << 12) /* Address of stmt. */ 75 a gimple stmt. */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_compile.py | 324 for stmt in stmts: 325 stmt += "\n" 326 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'single') 327 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'exec') 375 for stmt in succeed: 376 compile(stmt, 'tmp', 'exec') 377 for stmt in fail: 378 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'exec')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_compile.py | 324 for stmt in stmts: 325 stmt += "\n" 326 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'single') 327 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'exec') 375 for stmt in succeed: 376 compile(stmt, 'tmp', 'exec') 377 for stmt in fail: 378 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'exec')
|
/external/chromium_org/third_party/sqlite/src/test/ |
autoinc.test | 526 set STMT [sqlite3_prepare $DB { 531 sqlite3_finalize $STMT 532 set STMT [sqlite3_prepare $DB { 537 sqlite3_step $STMT 538 sqlite3_finalize $STMT
|
vtab1.test | 110 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL] 111 sqlite3_step $STMT 114 sqlite3_reset $STMT 115 sqlite3_step $STMT 118 sqlite3_reset $STMT 120 sqlite3_step $STMT 123 sqlite3_finalize $STMT 741 foreach stmt [list \ 751 execsql $stmt 752 execsql $stmt db [all...] |
func.test | 676 set STMT [sqlite3_prepare $DB $sql -1 TAIL] 677 sqlite3_bind_text $STMT 1 hello\000 -1 679 while { "SQLITE_ROW"==[sqlite3_step $STMT] } { 680 lappend res [sqlite3_column_text $STMT 0] 682 lappend res [sqlite3_finalize $STMT] 715 set STMT [sqlite3_prepare $::DB "INSERT INTO tbl2 VALUES(?, ?)" -1 TAIL] 716 sqlite3_bind_blob $::STMT 1 abc 3 717 sqlite3_step $::STMT 718 sqlite3_finalize $::STMT [all...] |
/external/clang/include/clang/Rewrite/Core/ |
Rewriter.h | 30 class Stmt; 248 /// ReplaceStmt - This replaces a Stmt/Expr with another, using the pretty 251 bool ReplaceStmt(Stmt *From, Stmt *To); 265 std::string ConvertToString(Stmt *From);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
transformer.py | 19 # (except Module, Discard and Stmt) added by Sylvain Thenault 189 return Module(doc, Stmt(stmts)) 274 assert isinstance(code, Stmt) 310 assert isinstance(code, Stmt) 316 def stmt(self, nodelist): member in class:Transformer 319 small_stmt = stmt 320 flow_stmt = stmt 321 compound_stmt = stmt 328 return Stmt(stmts) 559 # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDEN [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
transformer.py | 19 # (except Module, Discard and Stmt) added by Sylvain Thenault 189 return Module(doc, Stmt(stmts)) 274 assert isinstance(code, Stmt) 310 assert isinstance(code, Stmt) 316 def stmt(self, nodelist): member in class:Transformer 319 small_stmt = stmt 320 flow_stmt = stmt 321 compound_stmt = stmt 328 return Stmt(stmts) 559 # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDEN [all...] |
/external/valgrind/main/VEX/priv/ |
guest_amd64_toIR.c | 232 static void stmt ( IRStmt* st ) function 240 stmt( IRStmt_WrTmp(dst, e) ); 299 stmt( IRStmt_Store(Iend_LE, addr, data) ); 989 stmt( IRStmt_Put( OFFB_RAX+1, e ) ); [all...] |
host_arm_isel.c | [all...] |
host_ppc_isel.c | [all...] |
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 249 /// \brief Set of parent Stmts for the currently serializing sub-stmt. 250 llvm::DenseSet<Stmt *> ParentStmts; 253 /// just after the stmt record. 254 llvm::DenseMap<Stmt *, uint64_t> SubStmtEntries; 387 SmallVector<Stmt *, 16> StmtsToEmit; 391 SmallVector<Stmt *, 16> *CollectedStmts; 447 void WriteSubStmt(Stmt *S, 448 llvm::DenseMap<Stmt *, uint64_t> &SubStmtEntries, 449 llvm::DenseSet<Stmt *> &ParentStmts); 714 void AddStmt(Stmt *S) [all...] |
/external/clang/lib/AST/ |
Expr.cpp | 172 // See also Stmt.cpp:{getLocStart(),getLocEnd()}. 195 case Stmt::NoStmtClass: llvm_unreachable("statement without class"); 197 #define STMT(type, base) \ 198 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break; 200 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc); [all...] |
StmtPrinter.cpp | 1 //===--- StmtPrinter.cpp - Printing implementation for Stmt ASTs ----------===// 10 // This file implements the Stmt::dumpPretty/Stmt::printPretty methods, which 46 void PrintStmt(Stmt *S) { 50 void PrintStmt(Stmt *S, int SubIndent) { 53 // If this is an expr used in a stmt context, indent and newline it. 88 void Visit(Stmt* S) { 94 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { 95 Indent() << "<<unknown stmt type>>\n"; 103 #define STMT(CLASS, PARENT) [all...] |
/external/clang/lib/Rewrite/Core/ |
Rewriter.cpp | 18 #include "clang/AST/Stmt.h" 331 /// ReplaceStmt - This replaces a Stmt/Expr with another, using the pretty 334 bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) { 335 assert(From != nullptr && To != nullptr && "Expected non-null Stmt's"); 352 std::string Rewriter::ConvertToString(Stmt *From) { 353 assert(From != nullptr && "Expected non-null Stmt");
|
/external/chromium_org/v8/src/ |
hydrogen.cc | 311 void HBasicBlock::PostProcessLoopHeader(IterationStatement* stmt) { 314 SetJoinId(stmt->EntryId()); 4520 Statement* stmt = statements->at(i); local [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | 157 class Stmt; [all...] |
/libcore/luni/src/test/java/libcore/java/sql/ |
OldStatementTest.java | 1296 Statement stmt; field in class:OldStatementTest.CancelThread 1325 PreparedStatement stmt; field in class:OldStatementTest.InsertThread [all...] |
/external/clang/lib/Sema/ |
SemaChecking.cpp | [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
Python.g | 83 : (NEWLINE | stmt)* 124 stmt: simple_stmt 254 | NEWLINE INDENT (stmt)+ DEDENT
|