HomeSort by relevance Sort by last modified time
    Searched full:statement (Results 76 - 100 of 2690) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/
switch2.js 24 Description: 'Tests the switch statement'
59 testcases[count++] = new TestCase(SECTION, 'switch statement',
62 testcases[count++] = new TestCase(SECTION, 'switch statement',
65 testcases[count++] = new TestCase(SECTION, 'switch statement',
68 testcases[count++] = new TestCase(SECTION, 'switch statement',
71 testcases[count++] = new TestCase(SECTION, 'switch statement',
88 testcases[count++] = new TestCase(SECTION, 'switch statement',
91 testcases[count++] = new TestCase(SECTION, 'switch statement',
94 testcases[count++] = new TestCase(SECTION, 'switch statement',
97 testcases[count++] = new TestCase(SECTION, 'switch statement',
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 90 // Called each time a statement begins execution, when tracing is enabled.
97 // Called each time a statement finishes execution, when profiling is enabled.
288 sqlite3_stmt* statement; local
290 sql, sqlLength * sizeof(jchar), &statement, NULL);
309 ALOGV("Prepared statement %p on connection %p", statement, connection->db);
310 return reinterpret_cast<jint>(statement);
316 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
319 // whether any errors occurred while executing the statement. The statement itsel
328 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
336 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
344 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
352 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
368 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
379 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
390 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
401 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
416 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
430 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
455 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
463 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
472 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
490 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
502 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
552 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
670 sqlite3_stmt* statement = reinterpret_cast<sqlite3_stmt*>(statementPtr); local
    [all...]
  /external/junit/src/org/junit/rules/
Timeout.java 8 import org.junit.runners.model.Statement;
46 public Statement apply(Statement base, Description description) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-001.js 2 File Name: statement-001.js
4 ECMA Section: 12.6.2 The for Statement
15 var SECTION = "statement-001.js";
statement-004.js 2 File Name: statement-004.js
4 ECMA Section: 12.6.3 The for...in Statement
9 var SECTION = "statement-004";
statement-005.js 2 File Name: statement-005.js
4 ECMA Section: 12.6.3 The for...in Statement
9 var SECTION = "statement-005";
statement-006.js 2 File Name: statement-006.js
4 ECMA Section: 12.6.3 The for...in Statement
10 var SECTION = "statement-006";
statement-009.js 3 ECMA Section: 12.9 The return statement
14 writeHeaderToLog( SECTION + " The return statement");
  /external/webkit/Source/WebCore/storage/
SQLStatementSync.cpp 46 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions)
47 : m_statement(statement)
60 SQLiteStatement statement(*database, m_statement);
61 int result = statement.prepare();
67 if (statement.bindParameterCount() != m_arguments.size()) {
73 result = statement.bindValue(i + 1, m_arguments[i]);
88 result = statement.step();
90 int columnCount = statement.columnCount();
94 rows->addColumn(statement.getColumnName(i));
98 rows->addResult(statement.getColumnValue(i))
    [all...]
  /external/chromium/chrome/browser/history/
multipart_uitest.cc 8 #include "app/sql/statement.h"
53 sql::Statement statement(db.GetUniqueStatement(query.c_str()));
54 EXPECT_TRUE(statement);
55 EXPECT_TRUE(statement.Step());
56 EXPECT_EQ(1, statement.ColumnInt(0));
  /external/chromium/chrome/browser/sync/util/
user_settings_posix.cc 30 SQLStatement statement; local
31 statement.prepare(dbhandle.get(),
35 statement.bind_string(0, email);
36 statement.bind_string(1, service_name);
37 statement.bind_blob(2, encrypted_service_token.data(),
39 if (SQLITE_DONE != statement.step()) {
user_settings.cc 36 SQLStatement statement; local
37 statement.prepare(dbhandle, query);
38 if (SQLITE_DONE != statement.step()) {
166 SQLStatement statement; local
167 statement.prepare(dbhandle,
169 statement.bind_string(0, Generate128BitRandomHexString());
170 if (SQLITE_DONE != statement.step()) {
218 SQLStatement statement; local
219 statement.prepare(dbhandle.get(),
223 if (SQLITE_DONE != statement.step())
229 SQLStatement statement; local
237 SQLStatement statement; local
306 SQLStatement statement; local
317 SQLStatement statement; local
364 SQLStatement statement; local
376 SQLStatement statement; local
431 SQLStatement statement; local
    [all...]
  /external/webkit/LayoutTests/platform/android-v8/storage/
transaction-error-callback-expected.txt 6 Testing statement callback throwing exception and error callback returning true : SUCCESS
7 Testing statement callback throwing exception and error callback returning false : SUCCESS
  /external/webkit/LayoutTests/storage/
empty-statement.html 14 writeMessageToLog("Executed an empty statement. If you didn't see a crash or assertion, the test passed.");
25 var db = openDatabase("EmptyStatementTest", "1.0", "Database for an empty statement test", 1);
transaction-error-callback-expected.txt 6 Testing statement callback throwing exception and error callback returning true : SUCCESS
7 Testing statement callback throwing exception and error callback returning false : SUCCESS
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 114 // if the SQL statement is something that causes rows of data to
134 SQLiteStatement statement = mDatabase.compileStatement( local
136 assertEquals(1, statement.executeInsert());
137 statement.close();
140 statement = mDatabase.compileStatement("insert or ignore into test values(1, 1);");
141 assertEquals(-1, statement.executeInsert());
142 statement.close();
151 // if the sql statement is something that causes rows of data to
153 statement = mDatabase.compileStatement(
156 statement.executeInsert()
169 SQLiteStatement statement = local
193 SQLiteStatement statement = local
    [all...]
  /external/chromium/app/sql/
statement.h 19 // Possible return values from ColumnType in a statement. These should match
30 // sql::Statement s(connection_.GetUniqueStatement(...));
31 // if (!s) // You should check for errors before using the statement.
41 class Statement {
43 // Creates an uninitialized statement. The statement will be invalid until
45 Statement();
47 explicit Statement(scoped_refptr<Connection::StatementRef> ref);
48 ~Statement();
50 // Initializes this object with the given statement, which may or may no
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
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...]
  /external/junit/src/org/junit/experimental/theories/
Theories.java 20 import org.junit.runners.model.Statement;
66 public Statement methodBlock(final FrameworkMethod method) {
70 public static class TheoryAnchor extends Statement {
127 public Statement methodBlock(FrameworkMethod method) {
128 final Statement statement= super.methodBlock(method); local
129 return new Statement() {
133 statement.evaluate();
147 protected Statement methodInvoker(FrameworkMethod method, Object test) {
159 private Statement methodCompletesWithParameters
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatement.java 22 * Represents a statement that can be executed against a database. The statement
35 * Execute this SQL statement, if it is not a SELECT / INSERT / DELETE / UPDATE, for example
54 * Execute this SQL statement, if the the number of rows affected by execution of this SQL
55 * statement is of any importance to the caller - for example, UPDATE / DELETE SQL statements.
57 * @return the number of rows affected by this SQL statement execution.
75 * Execute this SQL statement and return the ID of the row inserted due to this call.
76 * The SQL statement should be an INSERT for this to be a useful call.
97 * Execute a statement that returns a 1 by 1 table with a numeric value.
118 * Execute a statement that returns a 1 by 1 table with a text value
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 88 it was created by the same statement that created an unpicklable global,
89 it's not stored directly. Instead, the statement is stored in the
91 statement, the unpicklable statements are evaluated to recreate the
96 executing a statement, we skip the ones in unpicklable_names.
143 def add_unpicklable(self, statement, names):
144 """Adds a statement and list of names to the unpicklables.
149 statement: string, the statement that created new unpicklable global(s).
150 names: list of strings; the names of the globals created by the statement.
152 self.unpicklables.append(db.Text(statement))
    [all...]
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 22 * statement in the shell prompt text box to the server, and a callback
39 * The last history element is the statement that the user is currently
40 * typing. When a statement is run, it's frozen in the history, a new history
41 * element is added to the end of the array for the new statement, and
81 * was pressed, it will run the statement, navigate the history, or update the
82 * current statement in the history.
88 var statement = document.getElementById('statement');
91 // we're on the current statement. update it in the history before doing
93 this.history[this.historyCursor] = statement.value
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest-death-test.h 154 // Asserts that a given statement causes the program to exit, with an
157 # define ASSERT_EXIT(statement, predicate, regex) \
158 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
162 # define EXPECT_EXIT(statement, predicate, regex) \
163 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
165 // Asserts that a given statement causes the program to exit, either by
168 # define ASSERT_DEATH(statement, regex) \
169 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
173 # define EXPECT_DEATH(statement, regex) \
174 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex
    [all...]
  /external/gtest/include/gtest/
gtest-death-test.h 154 // Asserts that a given statement causes the program to exit, with an
157 # define ASSERT_EXIT(statement, predicate, regex) \
158 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
162 # define EXPECT_EXIT(statement, predicate, regex) \
163 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
165 // Asserts that a given statement causes the program to exit, either by
168 # define ASSERT_DEATH(statement, regex) \
169 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
173 # define EXPECT_DEATH(statement, regex) \
174 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-death-test.h 154 // Asserts that a given statement causes the program to exit, with an
157 # define ASSERT_EXIT(statement, predicate, regex) \
158 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
162 # define EXPECT_EXIT(statement, predicate, regex) \
163 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
165 // Asserts that a given statement causes the program to exit, either by
168 # define ASSERT_DEATH(statement, regex) \
169 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
173 # define EXPECT_DEATH(statement, regex) \
174 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex
    [all...]

Completed in 685 milliseconds

1 2 34 5 6 7 8 91011>>