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

1 2 3

  /libcore/sqlite-jdbc/src/main/java/SQLite/
Trace.java 12 * @param stmt SQL statement string
15 public void trace(String stmt);
Database.java 635 * @return a Stmt object
638 public Stmt prepare(String sql) throws SQLite.Exception {
640 Stmt stmt = new Stmt(); local
641 stmt_prepare(sql, stmt);
642 return stmt;
694 * @param stmt Stmt object
697 private native void stmt_prepare(String sql, Stmt stmt
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 325 SQLiteStatement stmt = null; local
331 stmt = db.compileStatement("INSERT INTO system(name,value)"
333 loadDefaultAnimationSettings(stmt);
337 if (stmt != null) stmt.close();
374 SQLiteStatement stmt = null; local
376 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
378 loadSecure35Settings(stmt);
382 if (stmt != null) stmt.close()
417 SQLiteStatement stmt = null; local
467 SQLiteStatement stmt = null; local
489 SQLiteStatement stmt = null; local
509 SQLiteStatement stmt = null; local
528 SQLiteStatement stmt = null; local
616 SQLiteStatement stmt = null; local
657 SQLiteStatement stmt = null; local
702 SQLiteStatement stmt = null; local
722 SQLiteStatement stmt = null; local
824 SQLiteStatement stmt = null; local
935 SQLiteStatement stmt = null; local
986 SQLiteStatement stmt = null; local
1009 SQLiteStatement stmt = null; local
1119 SQLiteStatement stmt = null; local
    [all...]
  /external/v8/src/
full-codegen.cc 95 void FullCodeGenSyntaxChecker::VisitBlock(Block* stmt) {
96 VisitStatements(stmt->statements());
101 ExpressionStatement* stmt) {
102 Visit(stmt->expression());
106 void FullCodeGenSyntaxChecker::VisitEmptyStatement(EmptyStatement* stmt) {
111 void FullCodeGenSyntaxChecker::VisitIfStatement(IfStatement* stmt) {
112 Visit(stmt->condition());
114 Visit(stmt->then_statement());
116 Visit(stmt->else_statement());
120 void FullCodeGenSyntaxChecker::VisitContinueStatement(ContinueStatement* stmt) {
    [all...]
data-flow.cc 54 void AstLabeler::VisitBlock(Block* stmt) {
55 VisitStatements(stmt->statements());
60 ExpressionStatement* stmt) {
61 Visit(stmt->expression());
65 void AstLabeler::VisitEmptyStatement(EmptyStatement* stmt) {
70 void AstLabeler::VisitIfStatement(IfStatement* stmt) {
75 void AstLabeler::VisitContinueStatement(ContinueStatement* stmt) {
80 void AstLabeler::VisitBreakStatement(BreakStatement* stmt) {
85 void AstLabeler::VisitReturnStatement(ReturnStatement* stmt) {
91 WithEnterStatement* stmt) {
    [all...]
fast-codegen.cc 104 void FastCodeGenSyntaxChecker::VisitBlock(Block* stmt) {
105 VisitStatements(stmt->statements());
110 ExpressionStatement* stmt) {
111 Visit(stmt->expression());
115 void FastCodeGenSyntaxChecker::VisitEmptyStatement(EmptyStatement* stmt) {
120 void FastCodeGenSyntaxChecker::VisitIfStatement(IfStatement* stmt) {
125 void FastCodeGenSyntaxChecker::VisitContinueStatement(ContinueStatement* stmt) {
130 void FastCodeGenSyntaxChecker::VisitBreakStatement(BreakStatement* stmt) {
135 void FastCodeGenSyntaxChecker::VisitReturnStatement(ReturnStatement* stmt) {
141 WithEnterStatement* stmt) {
    [all...]
prettyprinter.cc 1210 void JsonAstBuilder::VisitBlock(Block* stmt) {
1212 VisitStatements(stmt->statements());
1216 void JsonAstBuilder::VisitExpressionStatement(ExpressionStatement* stmt) {
1218 Visit(stmt->expression());
1222 void JsonAstBuilder::VisitEmptyStatement(EmptyStatement* stmt) {
1227 void JsonAstBuilder::VisitIfStatement(IfStatement* stmt) {
1229 Visit(stmt->condition());
1230 Visit(stmt->then_statement());
1231 Visit(stmt->else_statement());
1235 void JsonAstBuilder::VisitContinueStatement(ContinueStatement* stmt) {
    [all...]
codegen.cc 467 void CodeGenerator::CodeForStatementPosition(Statement* stmt) {
468 if (FLAG_debug_info) RecordPositions(masm(), stmt->statement_pos());
471 void CodeGenerator::CodeForDoWhileConditionPosition(DoWhileStatement* stmt) {
472 if (FLAG_debug_info) RecordPositions(masm(), stmt->condition_position());
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-flow-inline.h 277 get_lineno (const_gimple stmt)
281 if (!stmt)
284 loc = gimple_location (stmt);
346 in STMT. */
348 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
350 if (stmt)
354 linknode->loc.stmt = stmt;
375 in STMT. */
378 gimple stmt)
    [all...]
tree-iterator.h 86 return &i.ptr->stmt;
92 return i.ptr->stmt;
gimple.h 126 gimple stmt; local
161 return (n) ? n->stmt : NULL;
180 return (n) ? n->stmt : NULL;
213 /* Allocate a new sequence and initialize its first element with STMT. */
216 gimple_seq_alloc_with_stmt (gimple stmt)
219 gimple_seq_add_stmt (&seq, stmt);
1127 /* Return the file name of the location of STMT. */
1130 gimple_filename (const_gimple stmt)
1132 return LOCATION_FILE (gimple_location (stmt));
1136 /* Return the line number of the location of STMT. *
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-flow-inline.h 277 get_lineno (const_gimple stmt)
281 if (!stmt)
284 loc = gimple_location (stmt);
346 in STMT. */
348 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
350 if (stmt)
354 linknode->loc.stmt = stmt;
375 in STMT. */
378 gimple stmt)
    [all...]
tree-iterator.h 86 return &i.ptr->stmt;
92 return i.ptr->stmt;
gimple.h 126 gimple stmt; local
161 return (n) ? n->stmt : NULL;
180 return (n) ? n->stmt : NULL;
213 /* Allocate a new sequence and initialize its first element with STMT. */
216 gimple_seq_alloc_with_stmt (gimple stmt)
219 gimple_seq_add_stmt (&seq, stmt);
1127 /* Return the file name of the location of STMT. */
1130 gimple_filename (const_gimple stmt)
1132 return LOCATION_FILE (gimple_location (stmt));
1136 /* Return the line number of the location of STMT. *
    [all...]
  /external/v8/src/ia32/
fast-codegen-ia32.cc 104 void FastCodeGenSyntaxChecker::VisitBlock(Block* stmt) {
105 VisitStatements(stmt->statements());
110 ExpressionStatement* stmt) {
111 Visit(stmt->expression());
115 void FastCodeGenSyntaxChecker::VisitEmptyStatement(EmptyStatement* stmt) {
120 void FastCodeGenSyntaxChecker::VisitIfStatement(IfStatement* stmt) {
125 void FastCodeGenSyntaxChecker::VisitContinueStatement(ContinueStatement* stmt) {
130 void FastCodeGenSyntaxChecker::VisitBreakStatement(BreakStatement* stmt) {
135 void FastCodeGenSyntaxChecker::VisitReturnStatement(ReturnStatement* stmt) {
141 WithEnterStatement* stmt) {
    [all...]
  /libcore/luni/src/test/java/com/google/coretests/
StatsStore.java 36 static Statement stmt; field in class:StatsStore
199 try { stmt.execute(sql); }
208 stmt = conn.createStatement();
211 ResultSet res = stmt.executeQuery("SELECT id FROM Version");
220 stmt.execute("CREATE TABLE Test_Cases (" +
229 stmt.execute("CREATE TABLE Test_Case_Runs (" +
234 stmt.execute("CREATE TABLE Test_Case_Events (" +
239 // stmt.execute("CREATE PROCEDURE useSample (IN pName TEXT, " +
246 stmt.execute("CREATE TABLE Version(id VARCHAR(31));");
247 stmt.execute("INSERT INTO Version (id) VALUES ('" + sysVersion + "');")
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteGeneralTest.java 57 final String stmt = "SELECT * FROM test_pstmt WHERE i = ?"; local
59 // start 2 threads to do repeatedly execute "stmt"
70 SQLiteStatement s1 = mDatabase.compileStatement(stmt);
99 final String stmt = "SELECT * FROM test_pstmt WHERE i = ?"; local
100 final SQLiteStatement s1 = mDatabase.compileStatement(stmt);
102 // start 2 threads to do repeatedly execute "stmt"
  /libcore/luni/src/test/java/tests/SQLite/
AbstractSqlTest.java 143 * @param stmt the statement to be used for the selection of the data
148 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos)
150 ResultSet rs = stmt.executeQuery("select * from tbl1");
225 * @param stmt the statement to be used to update the data
230 private void updateOnes(Statement stmt, String[] ones_updated, short[] twos)
233 stmt.execute("UPDATE tbl1 SET one = '" + ones_updated[i]
  /libcore/luni/src/test/java/tests/java/sql/
QueryTimeoutTest.java 365 // B - different stmt on the same connection; should NOT time out
366 // C - different stmt on different connection; should NOT time out
538 PreparedStatement stmt = null; local
540 stmt = conn.prepareStatement("select * from sys.systables");
547 stmt.setQueryTimeout(-1);
559 rs = stmt.executeQuery();
566 stmt.close();
594 Statement stmt = connections[0].createStatement(); local
595 stmt.setQueryTimeout(TIMEOUT);
596 stmt.executeUpdate(getExecQuery("t"))
613 Statement stmt = connections[0].createStatement(); local
    [all...]
  /external/libpcap/
gencode.h 190 struct stmt { struct
198 struct stmt s;
233 struct stmt s; /* branch stmt */
256 struct slist *s; /* stmt list */
tokdefs.h 248 struct stmt *stmt; member in union:YYSTYPE
optimize.c 111 static int atomuse(struct stmt *);
112 static int atomdef(struct stmt *);
117 static inline void vstore(struct stmt *, int *, int, int);
128 static void fold_op(struct stmt *, int, int);
132 static void opt_stmt(struct stmt *, int[], int);
133 static void deadstmt(struct stmt *, struct stmt *[]);
367 struct stmt *s;
406 * a single stmt cannot define more than one register. If no register
413 struct stmt *s
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteDatabase.cpp 328 sqlite3_stmt* stmt = NULL; local
393 err = sqlite3_prepare_v2(handle, sql, -1, &stmt, NULL);
400 err = sqlite3_bind_text(stmt, 1, locale8, -1, SQLITE_TRANSIENT);
407 err = sqlite3_step(stmt);
436 if (stmt != NULL) sqlite3_finalize(stmt);
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 878 SQLiteStatement stmt = getStatement(allowReplace); local
879 stmt.clearBindings();
884 DatabaseUtils.bindObjectToProgram(stmt, i, e.getValue());
890 return stmt.executeInsert();
    [all...]
  /libcore/luni/src/test/java/tests/sql/
StatementTest.java 1813 Statement stmt; field in class:StatementTest.CancelThread
1841 PreparedStatement stmt; field in class:StatementTest.InsertThread
    [all...]

Completed in 1514 milliseconds

1 2 3