HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 151 - 175 of 278) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/v8/test/mjsunit/
debug-step.js 64 // Set a breakpoint on the for statement (line 1).
73 // Check that performing 1000 steps with a break point on the statement in the
for-in-null-or-undefined.js 29 // undefined. They never executed the statement block.
with-parameter-access.js 28 // Return a parameter from inside a with statement.
with-prototype.js 28 // Test the behavior of an assignment in a with statement where the
global-load-from-nested-eval.js 38 // Shadow variable with a with statement.
receiver-in-with-calls.js 28 // When invoking functions from within a 'with' statement, we must set
  /external/webkit/Source/WebCore/storage/
Database.cpp 358 SQLiteStatement statement(sqliteDatabase(), "SELECT name FROM sqlite_master WHERE type='table';");
359 if (statement.prepare() != SQLResultOk) {
367 while ((result = statement.step()) == SQLResultRow) {
368 String name = statement.getColumnText(0);
  /external/webkit/Source/WebCore/xml/
XPathParser.h 70 Expression* parseStatement(const String& statement, PassRefPtr<XPathNSResolver>, ExceptionCode&);
  /frameworks/base/tools/aidl/
aidl_language.h 146 void (*import)(buffer_type* statement);
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 40 import java.sql.Statement;
53 private Statement statement; field in class:OldDatabaseTest
66 statement = conn.createStatement();
75 this.statement.execute("drop table " + tableName);
79 statement.execute(DatabaseCreator.CREATE_TABLE_SIMPLE1);
80 statement.close();
157 fail("Statement should fail");
246 statement.execute(DatabaseCreator.DROP_TABLE1);
315 statement.execute(DatabaseCreator.DROP_TABLE1)
667 String statement = "create table TEST (res double)"; local
    [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...]
  /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);
  /external/v8/test/preparser/
nonstrict-with.js 28 // The with statement is allowed in non-strict code, and even around
strict-with.js 28 // The with statement is not allowed in strict code.
  /external/webkit/LayoutTests/storage/
open-database-while-transaction-in-progress.js 29 log("Executing statement failed: " + error.message);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 81 c_pretty_print_fn statement; member in struct:c_pretty_print_info
131 pp_c_base (PPI)->statement (pp_c_base (PPI), S)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 81 c_pretty_print_fn statement; member in struct:c_pretty_print_info
131 pp_c_base (PPI)->statement (pp_c_base (PPI), S)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 81 c_pretty_print_fn statement; member in struct:c_pretty_print_info
131 pp_c_base (PPI)->statement (pp_c_base (PPI), S)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 81 c_pretty_print_fn statement; member in struct:c_pretty_print_info
131 pp_c_base (PPI)->statement (pp_c_base (PPI), S)
  /external/chromium/chrome/browser/history/
in_memory_url_index_unittest.cc 12 #include "app/sql/statement.h"
70 sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line));
81 sql::Statement statement(db.GetUniqueStatement(
83 EXPECT_TRUE(statement);
89 while (statement.Step()) {
91 FillURLRow(statement, &row);
170 sql::Statement statement(GetDB().GetUniqueStatement("SELECT * FROM urls;"));
171 EXPECT_TRUE(statement);
    [all...]
  /external/v8/test/mjsunit/harmony/
block-let-crankshaft.js 216 // Use before initialization in declaration statement.
223 // Use before initialization in prior statement.
block-let-semantics.js 62 // Use before initialization in declaration statement.
69 // Use before initialization in prior statement.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 99 * SQL statement that sets the {@link ContactsColumns#LAST_STATUS_UPDATE_ID} column
145 /** Precompiled sql statement for setting an aggregated presence */
    [all...]
  /build/tools/
java-layers.py 209 + "statement.\n") % filename)
214 for statement in statements[1:]:
215 m = IMPORT.match(statement)
  /external/v8/test/mjsunit/compiler/
literals-assignment.js 30 // Test simple return statement.

Completed in 806 milliseconds

1 2 3 4 5 67 8 91011>>