HomeSort by relevance Sort by last modified time
    Searched refs:Statement (Results 126 - 150 of 239) sorted by null

1 2 3 4 56 7 8 910

  /external/chromium_org/sql/
recovery.cc 15 #include "sql/statement.h"
342 Statement s(db()->GetUniqueStatement(query.c_str()));
435 // literally from the sqlite_master CREATE statement.
521 sql::Statement recovery_version(db()->GetUniqueStatement(kVersionSql));
recovery_unittest.cc 16 #include "sql/statement.h"
32 sql::Statement s(db->GetUniqueStatement(sql));
204 int* record_error, int error, sql::Statement* stmt) {
247 sql::Statement s(db().GetUniqueStatement(kInsertSql));
290 // The failing statement should now succeed, with no results.
307 sql::Statement s(db().GetUniqueStatement(kInsertSql));
  /external/chromium_org/v8/test/mjsunit/harmony/
arrow-functions.js 41 // Statement body needs braces, must use 'return' explicitly if not void
  /external/llvm/utils/vim/
tablegen.vim 41 HiLink tgKeyword Statement
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCursor.java 12 import java.sql.Statement;
231 Statement statement = connection.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY); local
232 ResultSet rs = statement.executeQuery(sql);
ShadowSQLiteDatabase.java 18 import java.sql.Statement;
94 PreparedStatement insert = connection.prepareStatement(sqlInsertString.sql, Statement.RETURN_GENERATED_KEYS);
128 Statement statement = connection.createStatement(DatabaseConfig.getResultSetType(), ResultSet.CONCUR_READ_ONLY); local
129 resultSet = statement.executeQuery(sql);
158 PreparedStatement statement = connection.prepareStatement(sqlUpdateString.sql); local
162 statement.setObject(i++, columns.next());
165 return statement.executeUpdate();
206 SQLiteStatement statement = null; local
208 statement =compileStatement(scrubbedSql)
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
InsertFunctionalityTest.java 23 import java.sql.Statement;
37 private static Statement statement = null; field in class:InsertFunctionalityTest
43 statement = conn.createStatement();
50 statement.close();
63 statement
67 statement
71 statement
75 statement
79 statement
    [all...]
StressTest.java 25 import java.sql.Statement;
40 private static Statement statement; field in class:StressTest
46 statement = conn.createStatement();
53 statement.close();
66 statement.execute(DatabaseCreator.DROP_TABLE2);
69 statement.execute(DatabaseCreator.CREATE_TABLE2);
78 statement.execute(DatabaseCreator.DROP_TABLE2);
100 // statement.execute("DELETE FROM " + DatabaseCreator.TEST_TABLE2);
175 ResultSet rs = statement
    [all...]
UpdateFunctionalityTest.java 24 import java.sql.Statement;
40 private static Statement statement; field in class:UpdateFunctionalityTest
47 statement = conn.createStatement();
58 statement.close();
72 statement.execute(DatabaseCreator.DROP_TABLE1);
75 statement.execute(DatabaseCreator.DROP_TABLE2);
78 statement.execute(DatabaseCreator.DROP_TABLE3);
83 statement.execute(DatabaseCreator.CREATE_TABLE3);
84 statement.execute(DatabaseCreator.CREATE_TABLE2)
    [all...]
UpdateFunctionalityTest2.java 26 import java.sql.Statement;
40 private static Statement statement = null; field in class:UpdateFunctionalityTest2
47 statement = conn.createStatement();
59 statement.close();
72 statement
76 statement
80 statement
84 statement
88 statement
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DatabaseTestBase.java 15 import java.sql.Statement;
209 * One should just avoid ever calling a statement without selectionArgs (when one has a ? placeholder),
348 Statement statement; local
353 statement = shadowOf(database).getConnection().createStatement();
354 resultSet = statement.executeQuery("SELECT COUNT(*) FROM table_name");
358 statement = shadowOf(database).getConnection().createStatement();
359 resultSet = statement.executeQuery("SELECT * FROM table_name");
367 Statement statement; local
503 Statement statement = shadowOf(database).getConnection().createStatement(); local
517 Statement statement = shadowOf(database).getConnection().createStatement(); local
    [all...]
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 27 class Statement;
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_database.cc 178 void ActivityDatabase::DatabaseErrorCallback(int error, sql::Statement* stmt) {
database_string_table_unittest.cc 9 #include "sql/statement.h"
47 sql::Statement query(
activity_database_unittest.cc 26 #include "sql/statement.h"
86 sql::Statement statement(db->GetCachedStatement(
88 statement.BindString(0, action.extension_id());
89 statement.BindInt64(1, action.time().ToInternalValue());
90 statement.BindInt(2, static_cast<int>(action.action_type()));
91 statement.BindString(3, action.api_name());
92 if (!statement.Run()) {
153 sql::Statement statement(db->GetCachedStatement
    [all...]
  /external/chromium_org/chrome/browser/history/
thumbnail_database.h 16 #include "sql/statement.h"
223 sql::Statement statement_;
  /external/chromium_org/content/browser/
databases_table_unittest.cc 9 #include "sql/statement.h"
30 sql::Statement statement(db->GetCachedStatement(
32 return (statement.is_valid() && statement.Step() && !statement.ColumnInt(0));
  /external/deqp/framework/randomshaders/
rsgShader.cpp 118 for (vector<Statement*>::const_reverse_iterator i = m_globalStatements.rbegin(); i != m_globalStatements.rend(); i++)
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 27 * An interface for a precompiled SQL Statement.
29 * An SQL Statement is put into a {@code PreparedStatement} and is precompiled
33 * the setting of {@code IN} parameters for the statement. The setter method
36 public interface PreparedStatement extends Statement {
50 * {@code Statement}. Setting a parameter value replaces the previous value. This
60 * Executes the SQL statement in this {@code PreparedStatement}.
83 * if a database error happens or if the SQL statement does not
89 * Invokes the SQL command contained within the prepared statement. This
96 * if a database error happens or if the SQL statement returns a
108 * queried ahead of time without actually executing the statement
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetGetterTests.java 28 import java.sql.Statement;
49 Statement st = null;
262 Statement st = null;
263 Statement stQuery = null;
294 Statement st = null;
295 Statement stQuery = null;
344 Statement st = null;
345 Statement stQuery = null;
377 Statement st = null;
378 Statement stQuery = null
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-codegen-deopt.cc 167 ZoneList<Statement*>* body = info.function()->body();
277 ZoneList<Statement*>* body = info.function()->body();
  /external/chromium_org/v8/src/
full-codegen.h 26 // AST node visitor which can tell whether a given statement will be breakable
36 void Check(Statement* stmt);
147 virtual bool IsContinueTarget(Statement* target) { return false; }
148 virtual bool IsBreakTarget(Statement* target) { return false; }
150 // Notify the statement that we are exiting it via break, continue, or
152 // next outer statement in the nesting stack. We accumulate in
170 // A breakable statement such as a block.
173 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
174 : NestedStatement(codegen), statement_(statement) {
179 virtual bool IsBreakTarget(Statement* target)
183 BreakableStatement* statement() { return statement_; } function in class:v8::internal::FullCodeGenerator::Breakable
    [all...]
  /external/chromium_org/sync/syncable/
directory_backing_store_unittest.cc 16 #include "sql/statement.h"
316 sql::Statement s(db->GetCachedStatement(
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 57 Statement,
117 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
127 return E.getKind() == Statement;
203 // Get statement end of which triggered the destructor call.
298 /// CFGTerminator - Represents CFGBlock terminator statement.
302 /// statement is the same statement that branches control flow in evaluation
332 /// (2) A "terminator" statement (not in the set of statements).
339 /// within the set of statements in the block (usually the last statement).
409 /// refer to the loop statement for such blocks (and be null otherwise)
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 208 Statement::~Statement()
232 StatementBlock::Add(Statement* statement)
234 this->statements.push_back(statement);

Completed in 1888 milliseconds

1 2 3 4 56 7 8 910