HomeSort by relevance Sort by last modified time
    Searched refs:stmt (Results 1 - 25 of 217) sorted by null

1 2 3 4 5 6 7 8 9

  /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);
  /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
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 375 SQLiteStatement stmt = null; local
381 stmt = db.compileStatement("INSERT INTO system(name,value)"
383 loadDefaultAnimationSettings(stmt);
387 if (stmt != null) stmt.close();
424 SQLiteStatement stmt = null; local
426 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
428 loadSecure35Settings(stmt);
432 if (stmt != null) stmt.close()
467 SQLiteStatement stmt = null; local
506 SQLiteStatement stmt = null; local
528 SQLiteStatement stmt = null; local
548 SQLiteStatement stmt = null; local
567 SQLiteStatement stmt = null; local
655 SQLiteStatement stmt = null; local
696 SQLiteStatement stmt = null; local
741 SQLiteStatement stmt = null; local
761 SQLiteStatement stmt = null; local
786 SQLiteStatement stmt = null; local
809 SQLiteStatement stmt = null; local
825 SQLiteStatement stmt = null; local
886 SQLiteStatement stmt = null; local
908 SQLiteStatement stmt = null; local
953 SQLiteStatement stmt = null; local
1009 SQLiteStatement stmt = null; local
1026 SQLiteStatement stmt = null; local
1048 SQLiteStatement stmt = null; local
1062 SQLiteStatement stmt = null; local
1110 SQLiteStatement stmt = null; local
1152 SQLiteStatement stmt = null; local
1175 SQLiteStatement stmt = null; local
1201 SQLiteStatement stmt = null; local
1220 SQLiteStatement stmt = null; local
1244 SQLiteStatement stmt = null; local
1271 SQLiteStatement stmt = null; local
1464 SQLiteStatement stmt = null; local
1510 SQLiteStatement stmt = null; local
1547 SQLiteStatement stmt = null; local
1696 SQLiteStatement stmt = null; local
1725 SQLiteStatement stmt = null; local
1739 SQLiteStatement stmt = null; local
1860 SQLiteStatement stmt = null; local
1919 SQLiteStatement stmt = null; local
1945 SQLiteStatement stmt = null; local
1965 SQLiteStatement stmt = null; local
2034 SQLiteStatement stmt = null; local
2131 SQLiteStatement stmt = null; local
    [all...]
  /external/chromium_org/v8/src/
full-codegen.cc 45 void BreakableStatementChecker::Check(Statement* stmt) {
46 Visit(stmt);
92 void BreakableStatementChecker::VisitModuleStatement(ModuleStatement* stmt) {
96 void BreakableStatementChecker::VisitBlock(Block* stmt) {
101 ExpressionStatement* stmt) {
103 Visit(stmt->expression());
107 void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
111 void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
113 Visit(stmt->condition());
118 ContinueStatement* stmt) {
    [all...]
typing.cc 81 Statement* stmt = stmts->at(i); local
82 RECURSE(Visit(stmt));
83 if (stmt->IsJump()) break;
88 void AstTyper::VisitBlock(Block* stmt) {
89 RECURSE(VisitStatements(stmt->statements()));
90 if (stmt->labels() != NULL) {
96 void AstTyper::VisitExpressionStatement(ExpressionStatement* stmt) {
97 RECURSE(Visit(stmt->expression()));
101 void AstTyper::VisitEmptyStatement(EmptyStatement* stmt) {
105 void AstTyper::VisitIfStatement(IfStatement* stmt) {
    [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/chromium_org/sql/
statement.cc 57 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
65 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
75 sqlite3_clear_bindings(ref_->stmt());
76 sqlite3_reset(ref_->stmt());
93 return CheckOk(sqlite3_bind_null(ref_->stmt(), col + 1));
104 return CheckOk(sqlite3_bind_int(ref_->stmt(), col + 1, val));
111 return CheckOk(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
118 return CheckOk(sqlite3_bind_double(ref_->stmt(), col + 1, val));
126 sqlite3_bind_text(ref_->stmt(), col + 1, val, -1, SQLITE_TRANSIENT));
133 return CheckOk(sqlite3_bind_text(ref_->stmt(),
    [all...]
sqlite_features_unittest.cc 20 int error, sql::Statement* stmt) {
22 const char* text = stmt ? stmt->GetSQLStatement() : NULL;
  /external/v8/src/
full-codegen.cc 44 void BreakableStatementChecker::Check(Statement* stmt) {
45 Visit(stmt);
88 void BreakableStatementChecker::VisitBlock(Block* stmt) {
93 ExpressionStatement* stmt) {
95 Visit(stmt->expression());
99 void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
103 void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
105 Visit(stmt->condition());
110 ContinueStatement* stmt) {
114 void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) {
    [all...]
  /external/chromium/app/sql/
statement.cc 45 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
51 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
59 sqlite3_clear_bindings(ref_->stmt());
60 sqlite3_reset(ref_->stmt());
73 int err = CheckError(sqlite3_bind_null(ref_->stmt(), col + 1));
85 int err = CheckError(sqlite3_bind_int(ref_->stmt(), col + 1, val));
93 int err = CheckError(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
101 int err = CheckError(sqlite3_bind_double(ref_->stmt(), col + 1, val));
109 int err = CheckError(sqlite3_bind_text(ref_->stmt(), col + 1, val, -1,
118 int err = CheckError(sqlite3_bind_text(ref_->stmt(), col + 1, val.data()
    [all...]
diagnostic_error_delegate.h 29 Statement* stmt) {
sqlite_features_unittest.cc 25 sql::Statement* stmt) {
27 const char* sql_txt = stmt ? stmt->GetSQLStatement() : NULL;
connection.h 84 // |connection| is db connection where the error happened and |stmt| is
88 // |stmt| MAY BE NULL if there is no statement causing the problem (i.e. on
94 virtual int OnError(int error, Connection* connection, Statement* stmt) = 0;
231 // sql::Statement stmt(connection_.GetCachedStatement(
233 // if (!stmt)
300 StatementRef(Connection* connection, sqlite3_stmt* stmt);
311 sqlite3_stmt* stmt() const { return stmt_; } function in class:sql::Connection::StatementRef
343 int OnSqliteError(int err, Statement* stmt);
  /external/robolectric/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/chromium_org/sql/test/
error_callback_support.cc 11 void CaptureErrorCallback(int* error_pointer, int error, sql::Statement* stmt) {
error_callback_support.h 18 void CaptureErrorCallback(int* error_pointer, int error, sql::Statement* stmt);
  /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...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow-inline.h 182 get_lineno (const_gimple stmt)
186 if (!stmt)
189 loc = gimple_location (stmt);
249 in STMT. */
251 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
253 if (stmt)
257 linknode->loc.stmt = stmt;
278 in STMT. */
281 gimple stmt)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow-inline.h 182 get_lineno (const_gimple stmt)
186 if (!stmt)
189 loc = gimple_location (stmt);
249 in STMT. */
251 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
253 if (stmt)
257 linknode->loc.stmt = stmt;
278 in STMT. */
281 gimple stmt)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow-inline.h 182 get_lineno (const_gimple stmt)
186 if (!stmt)
189 loc = gimple_location (stmt);
249 in STMT. */
251 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
253 if (stmt)
257 linknode->loc.stmt = stmt;
278 in STMT. */
281 gimple stmt)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow-inline.h 182 get_lineno (const_gimple stmt)
186 if (!stmt)
189 loc = gimple_location (stmt);
249 in STMT. */
251 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
253 if (stmt)
257 linknode->loc.stmt = stmt;
278 in STMT. */
281 gimple stmt)
    [all...]
  /external/valgrind/main/VEX/priv/
ir_defs.c 3737 IRStmt* stmt; local
    [all...]

Completed in 287 milliseconds

1 2 3 4 5 6 7 8 9