/external/javasqlite/src/main/java/SQLite/ |
Trace.java | 12 * @param stmt SQL statement string 15 public void trace(String stmt);
|
Profile.java | 13 * @param stmt SQL statement string 17 public void profile(String stmt, long est);
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
DatabaseHelper.java | 431 SQLiteStatement stmt = null; local 437 stmt = db.compileStatement("INSERT INTO system(name,value)" 439 loadDefaultAnimationSettings(stmt); 443 if (stmt != null) stmt.close(); 480 SQLiteStatement stmt = null; local 482 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)" 484 loadSecure35Settings(stmt); 488 if (stmt != null) stmt.close() 523 SQLiteStatement stmt = null; local 562 SQLiteStatement stmt = null; local 584 SQLiteStatement stmt = null; local 604 SQLiteStatement stmt = null; local 623 SQLiteStatement stmt = null; local 711 SQLiteStatement stmt = null; local 752 SQLiteStatement stmt = null; local 797 SQLiteStatement stmt = null; local 817 SQLiteStatement stmt = null; local 842 SQLiteStatement stmt = null; local 865 SQLiteStatement stmt = null; local 881 SQLiteStatement stmt = null; local 942 SQLiteStatement stmt = null; local 964 SQLiteStatement stmt = null; local 1009 SQLiteStatement stmt = null; local 1065 SQLiteStatement stmt = null; local 1082 SQLiteStatement stmt = null; local 1104 SQLiteStatement stmt = null; local 1118 SQLiteStatement stmt = null; local 1166 SQLiteStatement stmt = null; local 1208 SQLiteStatement stmt = null; local 1231 SQLiteStatement stmt = null; local 1257 SQLiteStatement stmt = null; local 1276 SQLiteStatement stmt = null; local 1302 SQLiteStatement stmt = null; local 1329 SQLiteStatement stmt = null; local 1521 SQLiteStatement stmt = null; local 1569 SQLiteStatement stmt = null; local 1606 SQLiteStatement stmt = null; local 1635 SQLiteStatement stmt = null; local 1653 SQLiteStatement stmt = null; local 1669 SQLiteStatement stmt = null; local 1698 SQLiteStatement stmt = null; local 1720 SQLiteStatement stmt = null; local 1750 SQLiteStatement stmt = null; local 1770 SQLiteStatement stmt = null; local 1786 SQLiteStatement stmt = null; local 1805 SQLiteStatement stmt = null; local 1825 SQLiteStatement stmt = null; local 1845 SQLiteStatement stmt = null; local 1864 SQLiteStatement stmt = null; local 1883 SQLiteStatement stmt = null; local 1901 SQLiteStatement stmt = null; local 1934 SQLiteStatement stmt = null; local 2091 SQLiteStatement stmt = null; local 2120 SQLiteStatement stmt = null; local 2134 SQLiteStatement stmt = null; local 2255 SQLiteStatement stmt = null; local 2311 SQLiteStatement stmt = null; local 2337 SQLiteStatement stmt = null; local 2357 SQLiteStatement stmt = null; local 2434 SQLiteStatement stmt = null; local 2557 SQLiteStatement stmt = null; local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/compiler/ |
future.py | 7 def is_future(stmt): 9 if not isinstance(stmt, ast.From): 11 if stmt.modname == "__future__": 26 stmt = node.node 27 for s in stmt.nodes: 31 def check_stmt(self, stmt): 32 if is_future(stmt): 33 for name, asname in stmt.names: 39 stmt.valid_future = 1
|
/prebuilts/gdb/linux-x86/lib/python2.7/compiler/ |
future.py | 7 def is_future(stmt): 9 if not isinstance(stmt, ast.From): 11 if stmt.modname == "__future__": 26 stmt = node.node 27 for s in stmt.nodes: 31 def check_stmt(self, stmt): 32 if is_future(stmt): 33 for name, asname in stmt.names: 39 stmt.valid_future = 1
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
future.py | 7 def is_future(stmt): 9 if not isinstance(stmt, ast.From): 11 if stmt.modname == "__future__": 26 stmt = node.node 27 for s in stmt.nodes: 31 def check_stmt(self, stmt): 32 if is_future(stmt): 33 for name, asname in stmt.names: 39 stmt.valid_future = 1
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
future.py | 7 def is_future(stmt): 9 if not isinstance(stmt, ast.From): 11 if stmt.modname == "__future__": 26 stmt = node.node 27 for s in stmt.nodes: 31 def check_stmt(self, stmt): 32 if is_future(stmt): 33 for name, asname in stmt.names: 39 stmt.valid_future = 1
|
/build/kati/ |
eval.cc | 28 #include "stmt.h" 95 void Evaluator::EvalAssign(const AssignStmt* stmt) { 96 loc_ = stmt->loc(); 98 Symbol lhs = stmt->GetLhsSymbol(this); 101 Var* rhs = EvalRHS(lhs, stmt->rhs, stmt->orig_rhs, stmt->op, 102 stmt->directive == AssignDirective::OVERRIDE); 107 void Evaluator::EvalRule(const RuleStmt* stmt) { 108 loc_ = stmt->loc() [all...] |
parser.cc | 27 #include "stmt.h" 39 IfStmt* stmt; member in struct:Parser::IfState 49 Parser(StringPiece buf, const char* filename, vector<Stmt*>* stmts) 59 Parser(StringPiece buf, const Loc& loc, vector<Stmt*>* stmts) 138 ParseErrorStmt* stmt = new ParseErrorStmt(); local 139 stmt->set_loc(loc_); 140 stmt->msg = msg; 141 out_stmts_->push_back(stmt); 142 parse_errors.push_back(stmt); 165 CommandStmt* stmt = new CommandStmt() local 220 RuleStmt* stmt = new RuleStmt(); local 250 AssignStmt* stmt = new AssignStmt(); local 262 IncludeStmt* stmt = new IncludeStmt(); local 295 AssignStmt* stmt = new AssignStmt(); local 319 IfStmt* stmt = new IfStmt(); local 369 IfStmt* stmt = new IfStmt(); local 433 ExportStmt* stmt = new ExportStmt; local [all...] |
eval.h | 23 #include "stmt.h" 39 void EvalAssign(const AssignStmt* stmt); 40 void EvalRule(const RuleStmt* stmt); 41 void EvalCommand(const CommandStmt* stmt); 42 void EvalIf(const IfStmt* stmt); 43 void EvalInclude(const IncludeStmt* stmt); 44 void EvalExport(const ExportStmt* stmt);
|
/external/v8/src/compiler/ |
ast-loop-assignment-analyzer.cc | 77 void ALAA::VisitBlock(Block* stmt) { VisitStatements(stmt->statements()); } 86 void ALAA::VisitExpressionStatement(ExpressionStatement* stmt) { 87 Visit(stmt->expression()); 91 void ALAA::VisitIfStatement(IfStatement* stmt) { 92 Visit(stmt->condition()); 93 Visit(stmt->then_statement()); 94 Visit(stmt->else_statement()); 98 void ALAA::VisitReturnStatement(ReturnStatement* stmt) { 99 Visit(stmt->expression()) [all...] |
/external/bison/build-aux/ |
gnupload | 273 # mkdirective DESTDIR BASE FILE STMT 277 stmt="$4" 279 stmt=" 280 filename: $3$stmt" 286 comment: gnupload v. $scriptversion$stmt 305 # upload DEST DESTDIR BASE FILE STMT FILES 311 # STMT Additional statements for the directive file; 319 stmt=$5 325 mkdirective "$destdir" "$base" "$file" "$stmt" 330 mkdirective "$destdir" "$base" "$file" "$stmt" [all...] |
/external/v8/src/parsing/ |
parameter-initializer-rewriter.cc | 39 void VisitBlock(Block* stmt) override; 40 void VisitTryCatchStatement(TryCatchStatement* stmt) override; 41 void VisitWithStatement(WithStatement* stmt) override; 111 void Rewriter::VisitBlock(Block* stmt) { 112 if (stmt->scope() != nullptr) 113 stmt->scope()->ReplaceOuterScope(new_scope_); 115 VisitStatements(stmt->statements()); 119 void Rewriter::VisitTryCatchStatement(TryCatchStatement* stmt) { 120 Visit(stmt->try_block()); 121 stmt->scope()->ReplaceOuterScope(new_scope_) [all...] |
/external/clang/include/clang/AST/ |
StmtIterator.h | 26 class Stmt; 36 Stmt **stmt; member in union:clang::StmtIteratorBase::__anon6041 67 Stmt*& GetDeclExpr() const; 69 StmtIteratorBase(Stmt **s) : stmt(s), RawVAPtr(0) {} 72 StmtIteratorBase() : stmt(nullptr), RawVAPtr(0) {} 85 StmtIteratorImpl(Stmt **s) : StmtIteratorBase(s) {} 91 ++stmt; 107 return stmt == RHS.stmt && DGI == RHS.DGI && RawVAPtr == RHS.RawVAPtr [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
role.py | 67 stmt = "role {0}".format(self) 70 stmt += " types {{ {0} }}".format(' '.join(types)) 72 stmt += " types {0}".format(types[0]) 73 stmt += ";" 74 return stmt
|
user.py | 75 stmt = "user {0} roles ".format(self) 77 stmt += "{{ {0} }}".format(' '.join(roles)) 79 stmt += roles[0] 82 stmt += " level {0.mls_level} range {0.mls_range};".format(self) 84 stmt += ";" 86 return stmt
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
SQLiteStatementTest.java | 72 SQLiteStatement stmt = database.compileStatement("SELECT count(*) FROM `countme`"); local 73 assertThat(stmt.simpleQueryForLong(), equalTo(0L)); 74 assertThat(stmt.simpleQueryForString(), equalTo("0")); 80 assertThat(stmt.simpleQueryForLong(), equalTo(1L)); 81 assertThat(stmt.simpleQueryForString(), equalTo("1")); 85 assertThat(stmt.simpleQueryForLong(), equalTo(2L)); 86 assertThat(stmt.simpleQueryForString(), equalTo("2")); 92 SQLiteStatement stmt = database.compileStatement("SELECT * FROM `countme` where `name`= 'cessationoftime'"); local 94 assertThat(stmt.simpleQueryForString(), equalTo("0")); 100 SQLiteStatement stmt = database.compileStatement("SELECT * FROM `countme` where `name`= 'cessationoftime'") local [all...] |
/external/v8/src/crankshaft/ |
typing.cc | 53 void AstTyper::ObserveTypesAtOsrEntry(IterationStatement* stmt) { 54 if (stmt->OsrEntryId() != osr_ast_id_) return; 118 Statement* stmt = stmts->at(i); local 119 RECURSE(Visit(stmt)); 120 if (stmt->IsJump()) break; 125 void AstTyper::VisitBlock(Block* stmt) { 126 RECURSE(VisitStatements(stmt->statements())); 127 if (stmt->labels() != NULL) { 133 void AstTyper::VisitExpressionStatement(ExpressionStatement* stmt) { 134 RECURSE(Visit(stmt->expression())) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
tree-flow-inline.h | 115 get_lineno (const_gimple stmt) 119 if (!stmt) 122 loc = gimple_location (stmt); 182 in STMT. */ 184 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt) 186 if (stmt) 190 linknode->loc.stmt = stmt; 211 in STMT. */ 214 gimple stmt) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/ |
clast.h | 61 #define CLAST_STMT_IS_A(stmt, type) ((stmt)->op == &(type)) 76 struct clast_stmt stmt; member in struct:clast_root 81 struct clast_stmt stmt; member in struct:clast_assignment 87 struct clast_stmt stmt; member in struct:clast_block 92 struct clast_stmt stmt; member in struct:clast_user_stmt 99 struct clast_stmt stmt; member in struct:clast_for 120 struct clast_stmt stmt; member in struct:clast_guard 142 CloogStatement *stmt, struct clast_stmt *subs);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/ |
clast.h | 61 #define CLAST_STMT_IS_A(stmt, type) ((stmt)->op == &(type)) 76 struct clast_stmt stmt; member in struct:clast_root 81 struct clast_stmt stmt; member in struct:clast_assignment 87 struct clast_stmt stmt; member in struct:clast_block 92 struct clast_stmt stmt; member in struct:clast_user_stmt 99 struct clast_stmt stmt; member in struct:clast_for 120 struct clast_stmt stmt; member in struct:clast_guard 142 CloogStatement *stmt, struct clast_stmt *subs);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
timeit.py | 78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt 85 %(stmt)s 121 def __init__(self, stmt="pass", setup="pass", timer=default_timer): 125 if isinstance(stmt, basestring): 126 stmt = reindent(stmt, 8) 129 src = template % {'stmt': stmt, 'setup': setup} 131 src = template % {'stmt': stmt, 'setup': '_setup()' [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
timeit.py | 78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt 85 %(stmt)s 121 def __init__(self, stmt="pass", setup="pass", timer=default_timer): 125 if isinstance(stmt, basestring): 126 stmt = reindent(stmt, 8) 129 src = template % {'stmt': stmt, 'setup': setup} 131 src = template % {'stmt': stmt, 'setup': '_setup()' [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
timeit.py | 78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt 85 %(stmt)s 121 def __init__(self, stmt="pass", setup="pass", timer=default_timer): 125 if isinstance(stmt, basestring): 126 stmt = reindent(stmt, 8) 129 src = template % {'stmt': stmt, 'setup': setup} 131 src = template % {'stmt': stmt, 'setup': '_setup()' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
timeit.py | 78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt 85 %(stmt)s 121 def __init__(self, stmt="pass", setup="pass", timer=default_timer): 125 if isinstance(stmt, basestring): 126 stmt = reindent(stmt, 8) 129 src = template % {'stmt': stmt, 'setup': setup} 131 src = template % {'stmt': stmt, 'setup': '_setup()' [all...] |