/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-004.js | 14 var TITLE = "do...while with a labeled continue statement"; 32 result2 = "failed: broke out of labeled statement unexpectedly"; 39 result1 = "fail: evaluated statement after a labeled break";
|
try-005.js | 4 * Description: The try statement 7 * as try-004, but the eval statement is called from a function, not 15 var TITLE = "The try statement";
|
while-004.js | 4 * Description: while statement 11 var TITLE = "while statement"; 38 result = "fail: hit code after return statement"; 44 description = "return statement in a while block"; 56 * While with a labeled continue statement. Verify that statements 57 * after the continue statement are not evaluated. 63 var description = "while with a labeled continue statement"; 73 result1 = "failed: hit code after continue statement"; 101 var description = "while with a labeled break statement"; 145 var result3 = "fail: did not evaluate statement after label" [all...] |
/external/webkit/Source/WebCore/manual-tests/inspector/ |
debugger-step-on-do-while-statements.html | 7 statement(); 25 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line. 28 TEST 3: 'Step over' to the end of the loop (and 'while' statement) and step over again. Debugger
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDatabaseLockedException.java | 21 * database locks it needs to do its job. If the statement is a [COMMIT] 23 * statement. If the statement is not a [COMMIT] and occurs within a
|
/libcore/luni/src/main/java/javax/sql/ |
StatementEventListener.java | 24 * PreparedStatements that are in the Statement pool. 32 * an StatementEvent object describing the event of statement 43 * an StatementEvent object describing the event of statement
|
/external/webkit/Source/WebCore/storage/ |
DatabaseTracker.cpp | 212 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?;"); 214 if (statement.prepare() != SQLResultOk) 217 statement.bindText(1, origin->databaseIdentifier()); 218 statement.bindText(2, databaseIdentifier); 220 return statement.step() == SQLResultRow; 292 SQLiteStatement statement(m_database, "SELECT path FROM Databases WHERE origin=? AND name=?;"); 294 if (statement.prepare() != SQLResultOk) 297 statement.bindText(1, originIdentifier); 298 statement.bindText(2, name); 300 int result = statement.step() [all...] |
/external/chromium/chrome/browser/history/ |
starred_url_database.cc | 7 #include "app/sql/statement.h" 53 void FillInStarredEntry(const sql::Statement& s, StarredEntry* entry) { 115 sql::Statement s(GetDB().GetUniqueStatement(sql.c_str())); 117 NOTREACHED() << "Statement prepare failed"; 158 sql::Statement statement(GetDB().GetCachedStatement(SQL_FROM_HERE, 161 if (!statement) 164 statement.BindString16(0, title); 165 statement.BindInt64(1, parent_folder_id); 166 statement.BindInt(2, visual_order) [all...] |
text_database.cc | 11 #include "app/sql/statement.h" 51 // create statement. These are the 0-based indices (as strings) of the 214 sql::Statement add_to_pages(db_.GetCachedStatement(SQL_FROM_HERE, 231 sql::Statement add_to_info(db_.GetCachedStatement(SQL_FROM_HERE, 251 sql::Statement select_ids(db_.GetCachedStatement(SQL_FROM_HERE, 264 sql::Statement delete_page(db_.GetCachedStatement(SQL_FROM_HERE, 279 sql::Statement delete_info(db_.GetCachedStatement(SQL_FROM_HERE, 295 sql::Statement statement(db_.GetCachedStatement(SQL_FROM_HERE, 297 if (!statement) [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
gimple.h | 87 defined for statement codes that do not use sub-codes. 90 are never used in the same statement class. 93 statement code can hold up to 16 bitflags). 107 /* True on an GIMPLE_OMP_RETURN statement if the return does not require 109 that would otherwise be emitted is dependent on the OMP statement with 162 /* Return the first statement in GIMPLE sequence S. */ 181 /* Return the last statement in GIMPLE sequence S. */ 220 /* Link gimple statement GS to the end of the sequence *SEQ_P. If 223 During gimplification, we need to manipulate statement sequences 256 /* Iterator object for GIMPLE statement sequences. * [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
gimple.h | 87 defined for statement codes that do not use sub-codes. 90 are never used in the same statement class. 93 statement code can hold up to 16 bitflags). 107 /* True on an GIMPLE_OMP_RETURN statement if the return does not require 109 that would otherwise be emitted is dependent on the OMP statement with 162 /* Return the first statement in GIMPLE sequence S. */ 181 /* Return the last statement in GIMPLE sequence S. */ 220 /* Link gimple statement GS to the end of the sequence *SEQ_P. If 223 During gimplification, we need to manipulate statement sequences 256 /* Iterator object for GIMPLE statement sequences. * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
gimple.h | 87 defined for statement codes that do not use sub-codes. 90 are never used in the same statement class. 93 statement code can hold up to 16 bitflags). 107 /* True on an GIMPLE_OMP_RETURN statement if the return does not require 109 that would otherwise be emitted is dependent on the OMP statement with 162 /* Return the first statement in GIMPLE sequence S. */ 181 /* Return the last statement in GIMPLE sequence S. */ 220 /* Link gimple statement GS to the end of the sequence *SEQ_P. If 223 During gimplification, we need to manipulate statement sequences 256 /* Iterator object for GIMPLE statement sequences. * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
gimple.h | 87 defined for statement codes that do not use sub-codes. 90 are never used in the same statement class. 93 statement code can hold up to 16 bitflags). 107 /* True on an GIMPLE_OMP_RETURN statement if the return does not require 109 that would otherwise be emitted is dependent on the OMP statement with 162 /* Return the first statement in GIMPLE sequence S. */ 181 /* Return the last statement in GIMPLE sequence S. */ 220 /* Link gimple statement GS to the end of the sequence *SEQ_P. If 223 During gimplification, we need to manipulate statement sequences 256 /* Iterator object for GIMPLE statement sequences. * [all...] |
/libcore/luni/src/test/java/libcore/java/sql/ |
OldStatementTest.java | 25 import java.sql.Statement; 32 Statement st = null; 78 Statement st = null; 105 Statement st = null; 122 Statement st = null; 164 Statement st = null; 229 Statement st = null; 233 assertEquals("different result for statement no. "+i, results[i], res); 252 Statement st = null; 281 Statement st = null [all...] |
/external/chromium/chrome/browser/webdata/ |
autofill_table.cc | 14 #include "app/sql/statement.h" 61 sql::Statement* s) { 84 AutofillProfile* AutofillProfileFromStatement(const sql::Statement& s) { 103 sql::Statement* s) { 121 CreditCard* CreditCardFromStatement(const sql::Statement& s) { 148 sql::Statement s(db->GetUniqueStatement( 153 NOTREACHED() << "Statement prepare failed"; 175 sql::Statement s(db->GetUniqueStatement( 180 NOTREACHED() << "Statement prepare failed"; 196 sql::Statement s(db->GetUniqueStatement [all...] |
/external/chromium/app/sql/ |
meta_table.h | 16 class Statement; 73 bool PrepareSetStatement(Statement* statement, const char* key); 74 bool PrepareGetStatement(Statement* statement, const char* key);
|
sqlite_features_unittest.cc | 8 #include "app/sql/statement.h" 25 sql::Statement* stmt) { 28 sql_text_ = sql_txt ? sql_txt : "no statement available"; 55 // The |error_handler_| will be called if any sqlite statement operation 61 // If any error happened the original sql statement can be found in
|
connection.h | 23 class Statement; 25 // Uniquely identifies a statement. There are two modes of operation: 28 // identify your statement. This is a convienient way to get uniqueness for 29 // a statement that is only used in one place. Use the SQL_FROM_HERE macro 32 // - In the "custom" mode you may use the statement from different places or 42 // Creates a uniquely named statement with the given file ane line number. 49 // Creates a uniquely named statement with the given user-defined name. 57 // a statement name that will be deallocated and will cause a crash later. 75 // false while the actual error code and causing statement are delivered using 85 // our best guess at the statement that triggered the error. Do not stor [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
statement-002.js | 2 File Name: statement-002.js 4 ECMA Section: 12.6.3 The for...in Statement 7 Statement is evaluated as follows: 26 8. Evaluate Statement. 38 var SECTION = "statement-002";
|
statement-003.js | 2 File Name: statement-003 4 ECMA Section: 12.6.3 The for...in Statement 7 Statement is evaluated as follows: 26 8. Evaluate Statement. 38 var SECTION = "statement-003";
|
/external/clang/lib/Parse/ |
ParseStmt.cpp | 1 //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===// 10 // This file implements the Statement and Block portions of the Parser 31 /// ParseStatementOrDeclaration - Read 'statement' or 'declaration'. 33 /// statement 36 /// statement: 37 /// labeled-statement 38 /// compound-statement 39 /// expression-statement 40 /// selection-statement 41 /// iteration-statement [all...] |
/libcore/luni/src/test/java/tests/java/sql/ |
SelectFunctionalityTest.java | 28 import java.sql.Statement; 46 private static Statement statement; field in class:SelectFunctionalityTest 57 statement = conn.createStatement(); 67 statement.close(); 79 statement.execute(DatabaseCreator.DROP_TABLE2); 82 statement 86 statement 90 statement 96 statement.execute(DatabaseCreator.CREATE_TABLE2) [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 77 static bool Create(const char* statement, const RE* regex, 137 virtual bool Create(const char* statement, const RE* regex, 144 virtual bool Create(const char* statement, const RE* regex, 154 #define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ 159 if (!::testing::internal::DeathTest::Create(#statement, >est_regex, \ 175 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ 233 // statement - A statement that a macro such as EXPECT_DEATH would test 235 // statement is compiled but not executed, to ensure that 239 // the output of statement. This parameter has to b [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
construction.rb | 50 : 'if'^ expression s1=statement ('else'! s2=statement)? 54 : 'while'^ expression statement 95 : expression? statement* type+ 96 -> ^(EXPR expression? statement* type+) 108 : 'for' '(' start=statement ';' expression ';' next=statement ')' statement 109 -> ^('for' $start expression $next statement) 137 : r=statement expression -> ^($r expression [all...] |
/external/icu4c/common/ |
utracimp.h | 107 * Trace function used inside functions that have a UTRACE_ENTRY() statement. 144 * Trace statement for the entry point of a function. 166 * Trace statement for the entry point of open and close functions. 183 * Trace statement for each exit point of a function that has a UTRACE_ENTRY() 184 * statement. 200 * Trace statement for each exit point of a function that has a UTRACE_ENTRY() 201 * statement, and that returns a value. 228 * Trace statement used inside functions that have a UTRACE_ENTRY() statement. 241 * Trace statement used inside functions that have a UTRACE_ENTRY() statement [all...] |