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

1 2 3 4 56 7 8 910

  /external/webkit/Source/JavaScriptCore/parser/
Nodes.cpp 63 void SourceElements::append(StatementNode* statement)
65 if (statement->isEmptyStatement())
67 m_statements.append(statement);
JSParser.cpp 56 #define TreeStatement typename TreeBuilder::Statement
688 while (TreeStatement statement = parseStatement(context, directive)) {
703 context.appendStatement(sourceElements, statement);
746 TreeStatement statement = parseStatement(context, unused); local
748 failIfFalse(statement);
757 return context.createDoWhileStatement(statement, expr, startLine, endLine);
772 TreeStatement statement = parseStatement(context, unused); local
774 failIfFalse(statement);
775 return context.createWhileStatement(expr, statement, startLine, endLine);
853 for (var IDENT in expression) statement
888 TreeStatement statement = parseStatement(context, unused); local
925 TreeStatement statement = parseStatement(context, unused); local
941 TreeStatement statement = parseStatement(context, unused); local
1055 TreeStatement statement = parseStatement(context, unused); local
1440 TreeStatement statement = parseStatement(context, unused); local
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBSQLiteBackingStore.cpp 787 SQLiteStatement statement(m_db, sql);
789 bool ok = statement.prepare() == SQLResultOk;
792 statement.bindInt64(1, m_currentId);
793 return statement.step() == SQLResultRow;
    [all...]
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);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java 249 * Each prepared-statement is between 1K - 6K, depending on the complexity of the
250 * SQL statement & schema. A large SQL cache may use a significant amount of memory.
1467 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs); local
1491 SQLiteStatement statement = new SQLiteStatement(this, "DELETE FROM " + table + local
1563 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs); local
1663 SQLiteStatement statement = new SQLiteStatement(this, sql, bindArgs); local
    [all...]
  /frameworks/base/tools/aidl/
aidl.cpp 89 buffer_type statement; member in struct:import_info
105 main_import_parsed(buffer_type* statement)
110 import->statement.lineno = statement->lineno;
111 import->statement.data = strdup(statement->data);
112 import->statement.extra = NULL;
114 import->neededClass = parse_import_statement(statement->data);
153 import_import_parsed(buffer_type* statement)
884 import->from, import->statement.lineno
    [all...]
  /external/v8/test/mjsunit/
debug-return-value.js 80 // Collect the position of the debugger statement.
84 // Position now at the if statement.
133 // Four steps from the debugger statement in this function will position us at
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
  /external/v8/test/mjsunit/harmony/
block-for.js 95 // in a for-in statement with let variables.
105 // In a normal for statement the iteration variable is not
133 // In a for-in statement the iteration variable is fresh
  /external/chromium/chrome/common/
sqlite_utils.cc 112 SQLStatement statement; local
113 if (statement.prepare(db, sql.c_str()) != SQLITE_OK)
116 if (statement.bind_text(0, table_name) != SQLITE_OK)
120 return sqlite3_step(statement.get()) == SQLITE_ROW;
  /external/srec/srec/include/
duk_args.h 107 void statement(char *descinfo);
  /external/webkit/Source/WebCore/xml/
XPathParser.h 70 Expression* parseStatement(const String& statement, PassRefPtr<XPathNSResolver>, ExceptionCode&);
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 177 // to executing the given statement. It is the responsibility of the
200 // RETURNED means that the test statement attempted to execute a return
201 // statement, which is not allowed; THREW means that the test statement
305 bool DeathTest::Create(const char* statement, const RE* regex,
308 statement, regex, file, line, test);
339 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
499 buffer << "Death test: " << statement() << "\n";
510 buffer << " Result: illegal return in test statement.\n"
742 ForkingDeathTest(const char* statement, const RE* regex)
    [all...]
  /external/gtest/src/
gtest-death-test.cc 177 // to executing the given statement. It is the responsibility of the
200 // RETURNED means that the test statement attempted to execute a return
201 // statement, which is not allowed; THREW means that the test statement
305 bool DeathTest::Create(const char* statement, const RE* regex,
308 statement, regex, file, line, test);
339 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
499 buffer << "Death test: " << statement() << "\n";
510 buffer << " Result: illegal return in test statement.\n"
742 ForkingDeathTest(const char* statement, const RE* regex)
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 177 // to executing the given statement. It is the responsibility of the
200 // RETURNED means that the test statement attempted to execute a return
201 // statement, which is not allowed; THREW means that the test statement
305 bool DeathTest::Create(const char* statement, const RE* regex,
308 statement, regex, file, line, test);
339 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
499 buffer << "Death test: " << statement() << "\n";
510 buffer << " Result: illegal return in test statement.\n"
741 ForkingDeathTest(const char* statement, const RE* regex)
    [all...]
  /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/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)

Completed in 1071 milliseconds

1 2 3 4 56 7 8 910