HomeSort by relevance Sort by last modified time
    Searched refs:Statement (Results 176 - 200 of 277) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/sync/syncable/
directory_backing_store_unittest.cc 16 #include "sql/statement.h"
313 sql::Statement s(db->GetCachedStatement(
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 52 Statement,
108 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
118 return E.getKind() == Statement;
175 // Get statement end of which triggered the destructor call.
245 /// CFGTerminator - Represents CFGBlock terminator statement.
249 /// statement is the same statement that branches control flow in evaluation
279 /// (2) A "terminator" statement (not in the set of statements).
286 /// within the set of statements in the block (usually the last statement).
356 /// refer to the loop statement for such blocks (and be null otherwise)
    [all...]
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 28 class Statement;
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_database.cc 164 void ActivityDatabase::DatabaseErrorCallback(int error, sql::Statement* stmt) {
database_string_table_unittest.cc 8 #include "sql/statement.h"
45 sql::Statement query(
activity_database_unittest.cc 26 #include "sql/statement.h"
87 sql::Statement statement(db->GetCachedStatement(
89 statement.BindString(0, action.extension_id());
90 statement.BindInt64(1, action.time().ToInternalValue());
91 statement.BindInt(2, static_cast<int>(action.action_type()));
92 statement.BindString(3, action.api_name());
93 if (!statement.Run()) {
154 sql::Statement statement(db->GetCachedStatement
    [all...]
  /external/chromium_org/webkit/browser/database/
databases_table_unittest.cc 9 #include "sql/statement.h"
26 sql::Statement statement(db->GetCachedStatement(
28 return (statement.is_valid() && statement.Step() && !statement.ColumnInt(0));
  /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/chrome/browser/safe_browsing/
filter_false_positive_perftest.cc 59 #include "app/sql/statement.h"
134 sql::Statement count_statement(db.GetCachedStatement(SQL_FROM_HERE, query));
146 sql::Statement prefix_statement(db.GetCachedStatement(SQL_FROM_HERE, query));
  /libcore/luni/src/test/java/libcore/sqlite/
OldFunctionContextTest.java 27 import java.sql.Statement;
38 Statement st = conn.createStatement();
  /frameworks/base/tools/aidl/
AST.cpp 208 Statement::~Statement()
232 StatementBlock::Add(Statement* statement)
234 this->statements.push_back(statement);
  /external/robolectric/lib/main/
junit-dep-4.8.2.jar 
  /external/chromium/chrome/browser/history/
url_database_unittest.cc 238 sql::Statement statement(GetDB().GetCachedStatement(
242 ASSERT_TRUE(statement);
244 statement.BindInt64(0, icon_id);
245 statement.BindInt64(1, url_id1);
246 ASSERT_TRUE(statement.Run());
  /external/chromium_org/chrome/browser/history/
thumbnail_database.h 16 #include "sql/statement.h"
268 sql::Statement statement_;
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table_unittest.cc 15 #include "sql/statement.h"
106 sql::Statement s(db_->GetDatabase()->GetUniqueStatement(
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider_unittest.cc 203 sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line.c_str()));
221 sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line.c_str()));

Completed in 414 milliseconds

1 2 3 4 5 6 78 91011>>