/external/chromium/chrome/browser/sync/util/ |
user_settings_unittest.cc | 8 #include "app/sql/statement.h" 73 sql::Statement s(db.GetUniqueStatement(query)); 89 sql::Statement s(db.GetUniqueStatement(query)); 123 sql::Statement s(db.GetUniqueStatement(query)); 136 sql::Statement s(db.GetUniqueStatement(query)); 184 // before finalizing the statement. 187 sql::Statement version_query(db.GetUniqueStatement(query)); 219 sql::Statement version_query(db.GetUniqueStatement(query)); 229 sql::Statement table_query(db.GetUniqueStatement(query2));
|
/external/clang/test/SemaCXX/ |
warn-empty-body.cpp | 9 if (x); // expected-warning {{if statement has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}} 68 switch(y); // expected-warning{{switch statement has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}} 81 /// There should be no warning when null statement is placed on its own line. 112 // Last `for' or `while' statement in compound statement shouldn't warn. 116 /// There should be no warning for a null statement resulting from an empty macro. 155 /// from indentation that next statement wasn't meant to be a body. 189 /// There should be no warning for a statement with a non-null body. 255 if (x); // expected-warning{{if statement has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
|
/frameworks/base/docs/html/sdk/api_diff/9/changes/ |
java.sql.Statement.html | 10 java.sql.Statement 74 Interface java.sql.<A HREF="../../../../reference/java/sql/Statement.html" target="_top"><font size="+2"><code>Statement</code></font></A> 87 <A NAME="java.sql.Statement.isClosed_added()"></A> 88 <nobr><code>boolean</code> <A HREF="../../../../reference/java/sql/Statement.html#isClosed()" target="_top"><code>isClosed</code></A>()</nobr> 94 <A NAME="java.sql.Statement.isPoolable_added()"></A> 95 <nobr><code>boolean</code> <A HREF="../../../../reference/java/sql/Statement.html#isPoolable()" target="_top"><code>isPoolable</code></A>()</nobr> 101 <A NAME="java.sql.Statement.setPoolable_added(boolean)"></A> 102 <nobr><code>void</code> <A HREF="../../../../reference/java/sql/Statement.html#setPoolable(boolean)" target="_top"><code>setPoolable</code></A>(<code>boolean</code>)</nobr>
|
/dalvik/dx/tests/072-dex-switch-edge-cases/ |
Blort.java | 19 // Empty switch statement. (Note: This is the same as a default-only 20 // switch statement, since under the covers every switch statement
|
/external/junit/src/org/junit/rules/ |
RuleChain.java | 11 import org.junit.runners.model.Statement; 94 public Statement apply(Statement base, Description description) {
|
/external/webkit/LayoutTests/storage/ |
quota-tracking.html | 60 // Try to run this statement on 'database2' only. 61 // It should not be run, because the previous statement should've 65 log("This statement should not have been run.");
|
sql-error-codes.js | 44 tx.executeSql("BAD STATEMENT", [], null, function(tx, error) { return true; }); 50 testTransaction(db, function(tx) { tx.executeSql("BAD STATEMENT"); }, "SYNTAX_ERR"); 97 tx.executeSql("THIS STATEMENT SHOULD NEVER GET EXECUTED");
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/ |
12.2-1.js | 24 ECMA Section: The variable statement 27 If the variable statement occurs inside a FunctionDeclaration, the 45 var TITLE = "The variable statement";
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldSQLTest.java | 24 import java.sql.Statement; 53 Statement st = null; 77 Statement st = null;
|
/external/webkit/Source/WebCore/storage/ |
StorageTracker.cpp | 156 SQLiteStatement statement(m_database, "SELECT origin FROM Origins"); 157 if (statement.prepare() != SQLResultOk) { 158 LOG_ERROR("Failed to prepare statement."); 166 while ((result = statement.step()) == SQLResultRow) 167 m_originSet.add(statement.getColumnText(0).threadsafeCopy()); 286 SQLiteStatement statement(m_database, "INSERT INTO Origins VALUES (?, ?)"); 287 if (statement.prepare() != SQLResultOk) { 292 statement.bindText(1, originIdentifier); 293 statement.bindText(2, databaseFile); 295 if (statement.step() != SQLResultDone [all...] |
/dalvik/vm/mterp/x86/ |
OP_PACKED_SWITCH.S | 7 * We don't really expect backward branches in a switch statement, but
|
/external/clang/include/clang/Tooling/ |
RefactoringCallbacks.h | 50 /// \brief Replace the text of the statement bound to \c FromId with the text in 62 /// \brief Replace the text of the statement bound to \c FromId with the text of 63 /// the statement bound to \c ToId. 74 /// \brief Replace an if-statement bound to \c Id with the outdented text of its
|
/external/clang/test/Parser/ |
switch-recovery.cpp | 163 case 0: // expected-error {{label at end of compound statement: expected statement}} 170 default: // expected-error {{label at end of compound statement: expected statement}}
|
/external/icu4c/common/unicode/ |
platform.win | 11 * file to ensure the #include "unicode/platform.h" statement works.
|
/external/javassist/src/main/javassist/compiler/ |
TokenId.java | 118 int EXPR = 'E'; // expression statement 119 int LABEL = 'L'; // label statement 120 int BLOCK = 'B'; // block statement 121 int DECL = 'D'; // declaration 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.
|
/external/sqlite/android/ |
sqlite3_android.cpp | 258 sqlite3_stmt * statement = (sqlite3_stmt *)data; local 259 sqlite3_finalize(statement); 336 // Get or create the prepared statement for the insertions 337 sqlite3_stmt * statement = (sqlite3_stmt *)sqlite3_get_auxdata(context, 0); local 338 if (!statement) { 345 err = sqlite3_prepare_v2(handle, sql, -1, &statement, NULL); 352 // This binds the statement to the table it was compiled against, which is argv[0]. 355 sqlite3_set_auxdata(context, 0, statement, tokenize_auxdata_delete); 357 // Reset the cached statement so that binding the row ID will work properly 358 sqlite3_reset(statement); [all...] |
/external/v8/src/ |
full-codegen.h | 45 // AST node visitor which can tell whether a given statement will be breakable 53 void Check(Statement* stmt); 138 virtual bool IsContinueTarget(Statement* target) { return false; } 139 virtual bool IsBreakTarget(Statement* target) { return false; } 141 // Notify the statement that we are exiting it via break, continue, or 143 // next outer statement in the nesting stack. We accumulate in 161 // A breakable statement such as a block. 164 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement) 165 : NestedStatement(codegen), statement_(statement) { 170 virtual bool IsBreakTarget(Statement* target) 174 BreakableStatement* statement() { return statement_; } function in class:v8::internal::FullCodeGenerator::Breakable [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
lexical-053.js | 29 eval('if (a > b)\nelse result += ": got to else statement"');
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-001.js | 13 var TITLE = "do...while with a labeled continue statement";
|
/external/webkit/Source/WebCore/manual-tests/inspector/ |
debugger-pause-on-else-statements.html | 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=21944">Bug 21944: Can't set a breakpoint on the statement after a single line "else"</a>.
|
debugger-pause-on-for-in-statements.html | 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>.
|
debugger-pause-on-for-statements.html | 11 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>.
|
/frameworks/compile/libbcc/tests/data/src/ |
comma.c | 12 printf("statement: %d\n", a);
|
/libcore/luni/src/test/java/tests/java/sql/ |
DatabaseMetaDataNotSupportedTest.java | 34 import java.sql.Statement; 50 protected static Statement statement; field in class:DatabaseMetaDataNotSupportedTest 52 protected static Statement statementForward; 62 statement = conn.createStatement(); 73 statement = conn.createStatement(); 92 statement.execute(DatabaseCreator.DROP_TABLE1); 95 statement.execute(DatabaseCreator.DROP_TABLE3); 97 statement.execute(DROP_VIEW_QUERY); 101 statement.execute(DatabaseCreator.CREATE_TABLE3) [all...] |