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

1 2 3 4 5 6

  /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 374 SQLiteStatement stmt = null; local
380 stmt = db.compileStatement("INSERT INTO system(name,value)"
382 loadDefaultAnimationSettings(stmt);
386 if (stmt != null) stmt.close();
423 SQLiteStatement stmt = null; local
425 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
427 loadSecure35Settings(stmt);
431 if (stmt != null) stmt.close()
466 SQLiteStatement stmt = null; local
505 SQLiteStatement stmt = null; local
527 SQLiteStatement stmt = null; local
547 SQLiteStatement stmt = null; local
566 SQLiteStatement stmt = null; local
654 SQLiteStatement stmt = null; local
695 SQLiteStatement stmt = null; local
740 SQLiteStatement stmt = null; local
760 SQLiteStatement stmt = null; local
785 SQLiteStatement stmt = null; local
808 SQLiteStatement stmt = null; local
824 SQLiteStatement stmt = null; local
885 SQLiteStatement stmt = null; local
907 SQLiteStatement stmt = null; local
952 SQLiteStatement stmt = null; local
1008 SQLiteStatement stmt = null; local
1025 SQLiteStatement stmt = null; local
1047 SQLiteStatement stmt = null; local
1061 SQLiteStatement stmt = null; local
1109 SQLiteStatement stmt = null; local
1151 SQLiteStatement stmt = null; local
1174 SQLiteStatement stmt = null; local
1200 SQLiteStatement stmt = null; local
1219 SQLiteStatement stmt = null; local
1243 SQLiteStatement stmt = null; local
1270 SQLiteStatement stmt = null; local
1463 SQLiteStatement stmt = null; local
1509 SQLiteStatement stmt = null; local
1677 SQLiteStatement stmt = null; local
1706 SQLiteStatement stmt = null; local
1720 SQLiteStatement stmt = null; local
1841 SQLiteStatement stmt = null; local
1900 SQLiteStatement stmt = null; local
1926 SQLiteStatement stmt = null; local
1946 SQLiteStatement stmt = null; local
2015 SQLiteStatement stmt = null; local
2112 SQLiteStatement stmt = null; local
    [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/
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);
connection.cc 68 sqlite3_stmt* stmt)
70 stmt_(stmt) {
234 sqlite3_reset(i->second->stmt());
249 sqlite3_stmt* stmt = NULL;
250 if (sqlite3_prepare_v2(db_, sql, -1, &stmt, NULL) != SQLITE_OK) {
256 return new StatementRef(this, stmt);
415 int Connection::OnSqliteError(int err, sql::Statement *stmt) {
417 return error_delegate_->OnError(err, this, stmt);
statement_unittest.cc 19 sql::Statement* stmt) {
21 const char* sql_txt = stmt ? stmt->GetSQLStatement() : NULL;
  /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...]
  /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...]
tree-iterator.h 86 return &i.ptr->stmt;
92 return i.ptr->stmt;
  /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...]
tree-iterator.h 86 return &i.ptr->stmt;
92 return i.ptr->stmt;
  /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...]
tree-iterator.h 86 return &i.ptr->stmt;
92 return i.ptr->stmt;
  /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...]
tree-iterator.h 86 return &i.ptr->stmt;
92 return i.ptr->stmt;
  /external/valgrind/main/VEX/priv/
ir_defs.c 3737 IRStmt* stmt; local
    [all...]
  /external/clang/include/clang/AST/
StmtIterator.h 25 class Stmt;
34 Stmt **stmt; member in class:clang::StmtIteratorBase
68 Stmt*& GetDeclExpr() const;
70 StmtIteratorBase(Stmt **s) : stmt(s), decl(0), RawVAPtr(0) {}
71 StmtIteratorBase(Decl *d, Stmt **s);
74 StmtIteratorBase() : stmt(0), decl(0), RawVAPtr(0) {}
87 StmtIteratorImpl(Stmt **s) : StmtIteratorBase(s) {}
89 StmtIteratorImpl(Decl *d, Stmt **s) : StmtIteratorBase(d, s) {
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
AbstractSqlTest.java 133 * @param stmt the statement to be used for the selection of the data
138 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos)
140 ResultSet rs = stmt.executeQuery("select * from tbl1");
194 * @param stmt the statement to be used to update the data
199 private void updateOnes(Statement stmt, String[] ones_updated, short[] twos)
202 stmt.execute("UPDATE tbl1 SET one = '" + ones_updated[i]
  /ndk/tests/device/test-stlport_shared-exception/jni/
cond1.cpp 6 #define CI(stmt) try { stmt; abort(); } catch (int) { }
  /ndk/tests/device/test-stlport_static-exception/jni/
cond1.cpp 6 #define CI(stmt) try { stmt; abort(); } catch (int) { }

Completed in 2565 milliseconds

1 2 3 4 5 6