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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
parse-js.js 703 var statement = embed_tokens ? function() {
705 var stmt = $statement();
708 } : $statement;
710 function $statement() {
758 })(in_loop(statement));
795 return as("while", parenthesised(), in_loop(statement));
798 return as("with", parenthesised(), statement());
808 var start = S.token, stat = statement();
824 croak("Label " + name + " without matching loop or statement");
843 return as("for-in", has_var, name, obj, in_loop(statement));
    [all...]
  /external/webkit/Source/WebCore/storage/
SQLTransaction.cpp 55 // There's no way of knowing exactly how much more space will be required when a statement hits the quota limit.
103 RefPtr<SQLStatement> statement = SQLStatement::create(m_database.get(), sqlStatement, arguments, callback, callbackError, permissions); local
106 statement->setDatabaseDeletedError();
109 statement->setVersionMismatchedError();
111 enqueueStatement(statement);
114 void SQLTransaction::enqueueStatement(PassRefPtr<SQLStatement> statement)
117 m_statementQueue.append(statement);
330 // Reset the maximum size here, as it was increased to allow us to retry this statement.
331 // m_shouldRetryCurrentStatement is set to true only when a statement exceeds
336 // If the current statement has already been run, failed due to quota constraints, and we're not retrying it
    [all...]
SQLTransactionSync.cpp 96 SQLStatementSync statement(sqlStatement, arguments, permissions);
103 resultSet = statement.execute(m_database.get(), ec);
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...]
  /external/dhcpcd/mk/
cc.mk 17 -Wdeclaration-after-statement -Wsequence-point -Wextra
  /external/webkit/LayoutTests/storage/
test-authorizer.js 25 log(statementType + " statement succeeded.");
30 log(statementType + " statement failed: " + error.message);
34 function executeStatement(tx, statement, operation)
36 tx.executeSql(statement, [],
  /system/extras/tests/bionic/libc/common/
bench_pthread.c 94 filter_stats(int count, const char* statement)
127 statement);
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 35 import java.sql.Statement;
55 protected static Statement statement; field in class:DatabaseMetaDataTest
57 protected static Statement statementForward;
67 statement = conn.createStatement();
81 statement = conn.createStatement();
100 statement.execute(DatabaseCreator.DROP_TABLE1);
103 statement.execute(DatabaseCreator.DROP_TABLE3);
105 statement.execute(DROP_VIEW_QUERY);
109 statement.execute(DatabaseCreator.CREATE_TABLE3)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
checker.py 35 'matching return statement.')
  /external/javassist/src/main/javassist/expr/
Handler.java 95 * @param statement a Java statement except try-catch.
97 public void replace(String statement) throws CannotCompileException {
106 * It must be a single statement or block.
Expr.java 267 * @param statement a Java statement except try-catch.
269 public abstract void replace(String statement) throws CannotCompileException;
275 * @param statement a Java statement except try-catch.
281 public void replace(String statement, ExprEditor recursive)
284 replace(statement);
FieldAccess.java 147 * @param statement a Java statement except try-catch.
149 public void replace(String statement) throws CannotCompileException {
180 boolean included = checkResultValue(retType, statement);
209 jc.compileStmnt(statement);
  /external/ipsec-tools/src/racoon/
prsa_par.y 155 statements statement
156 | statement
159 statement: label
  /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...]
  /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
1494 SQLiteStatement statement = new SQLiteStatement(this, "DELETE FROM " + table + local
1572 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs); local
1672 SQLiteStatement statement = new SQLiteStatement(this, sql, bindArgs); local
    [all...]
  /frameworks/base/tools/aidl/
aidl.cpp 95 buffer_type statement; member in struct:import_info
111 main_import_parsed(buffer_type* statement)
116 import->statement.lineno = statement->lineno;
117 import->statement.data = strdup(statement->data);
118 import->statement.extra = NULL;
120 import->neededClass = parse_import_statement(statement->data);
159 import_import_parsed(buffer_type* statement)
956 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
  /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/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/libvpx/libvpx/third_party/googletest/src/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...]
  /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);

Completed in 1960 milliseconds

1 2 3 4 56 7 8 91011>>