/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-005.js | 10 * print statement below and it works OK. 17 var TITLE = "do...while with a labeled continue statement";
|
switch-001.js | 4 * Description: The switch Statement 14 var TITLE = "The switch statement";
|
switch-002.js | 4 * Description: The switch Statement 14 var TITLE = "The switch statement";
|
switch-003.js | 4 * Description: The switch Statement 14 var TITLE = "The switch statement";
|
try-003.js | 4 * Description: The try statement 13 var TITLE = "The try statement";
|
try-008.js | 4 * Description: The try statement 14 var TITLE = "The try statement: try in a constructor";
|
try-009.js | 4 * Description: The try statement 15 var TITLE = "The try statement: try in a while block";
|
try-010.js | 4 * Description: The try statement 15 var TITLE = "The try statement: try in a tryblock";
|
/external/webkit/Source/WebCore/manual-tests/inspector/ |
debugger-step-on-while-statements.html | 7 statement(); 25 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br>
|
/development/scripts/app_engine_server/gae_shell/templates/ |
shell.html | 41 #statement { 90 onfocus="document.getElementById('statement').focus()" 92 <textarea class="prompt" name="statement" id="statement" rows="4" 117 document.getElementById('statement').focus();
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/ |
12.5-1.js | 24 ECMA Section: The if statement 27 The production IfStatement : if ( Expression ) Statement else Statement 34 5.Evaluate the first Statement. 36 7.Evaluate the second Statement.
|
12.10-1.js | 24 ECMA Section: 12.10 The with statement 27 with ( Expression ) Statement 29 The with statement adds a computed object to the front of the scope chain 30 of the current execution context, then executes a statement with this 35 The production WithStatement : with ( Expression ) Statement is evaluated 41 5. Evaluate Statement using the augmented scope chain from step 4. 46 Note that no matter how control leaves the embedded Statement, whether
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-iterator.h | 1 /* Iterator routines for manipulating GENERIC tree statement list. 97 TSI_NEW_STMT, /* Only valid when single statement is added, move 99 TSI_SAME_STMT, /* Leave the iterator at the same statement. */ 101 iterator to the first statement in the chain. */ 103 iterator to the last statement in the chain. */
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-iterator.h | 1 /* Iterator routines for manipulating GENERIC tree statement list. 97 TSI_NEW_STMT, /* Only valid when single statement is added, move 99 TSI_SAME_STMT, /* Leave the iterator at the same statement. */ 101 iterator to the first statement in the chain. */ 103 iterator to the last statement in the chain. */
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-iterator.h | 1 /* Iterator routines for manipulating GENERIC tree statement list. 97 TSI_NEW_STMT, /* Only valid when single statement is added, move 99 TSI_SAME_STMT, /* Leave the iterator at the same statement. */ 101 iterator to the first statement in the chain. */ 103 iterator to the last statement in the chain. */
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-iterator.h | 1 /* Iterator routines for manipulating GENERIC tree statement list. 97 TSI_NEW_STMT, /* Only valid when single statement is added, move 99 TSI_SAME_STMT, /* Leave the iterator at the same statement. */ 101 iterator to the first statement in the chain. */ 103 iterator to the last statement in the chain. */
|
/external/javasqlite/src/main/java/SQLite/ |
Database.java | 164 * Execute an SQL statement and invoke callback methods 171 * @param sql the SQL statement to be executed 185 * Execute an SQL statement and invoke callback methods 187 * statement string is substituted by its corresponding 202 * @param sql the SQL statement to be executed 204 * @param args arguments for the SQL statement, '%q' substitution 243 * Return the number of changed rows for the last statement. 288 * @param sql the SQL statement to be executed 306 /* only one statement !!! */ 328 * @param sql the SQL statement to be execute [all...] |
/external/chromium/chrome/browser/webdata/ |
keyword_table.cc | 7 #include "app/sql/statement.h" 27 void BindURLToStatement(const TemplateURL& url, sql::Statement* s) { 96 sql::Statement s(db_->GetCachedStatement(SQL_FROM_HERE, 105 NOTREACHED() << "Statement prepare failed"; 119 sql::Statement s( 122 NOTREACHED() << "Statement prepare failed"; 130 sql::Statement s(db_->GetUniqueStatement( 138 NOTREACHED() << "Statement prepare failed"; 194 sql::Statement s(db_->GetUniqueStatement( 202 NOTREACHED() << "Statement prepare failed" [all...] |
/external/clang/include/clang/AST/ |
StmtCXX.h | 10 // This file defines the C++ statement AST node classes. 124 /// statement, represented as 'for (range-declarator : range-expression)'. 208 /// statement with a dependent name. 210 /// The __if_exists statement can be used to include a sequence of statements 223 /// Similarly, the __if_not_exists statement can be used to include the 226 /// Note that this statement only captures __if_exists and __if_not_exists 230 /// statement from leaking out into the surround statements, which would 258 /// \brief Determine whether this is an __if_exists statement. 261 /// \brief Determine whether this is an __if_exists statement. 272 /// \brief Retrieve the compound statement that will be included in th [all...] |
/external/javassist/src/main/javassist/compiler/ |
Parser.java | 99 * ( block.statement | ";" ) 218 /* statement : [ label ":" ]* labeled.statement 220 * labeled.statement 221 * : block.statement 222 * | if.statement 223 * | while.statement 224 * | do.statement 225 * | for.statement 226 * | switch.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...] |
/tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/generateviewbylayout/codegenerators/ |
AbstractLayoutCodeGenerator.java | 37 import org.eclipse.jdt.core.dom.Statement;
135 * false if must insert in the of the method (activity), last statement before return (fragment)
139 protected void insertStatementsAtOnCreateDeclaration(Statement expr,
149 //if activity => add after second statement (after setContentView)
158 //last statement
178 //if fragment => add after first statement (after inflater.inflate)
179 //it should have inflater.inflate and return statement => add between them
186 //last statement before return
193 * Returns the last statement of inflate inside onCreate from Fragment
194 * @return -1 if inflate not found, value >=0 if statement found [all...] |
/external/v8/src/ |
preparser.h | 389 class Statement { 391 static Statement Default() { 392 return Statement(kUnknownStatement); 395 static Statement FunctionDeclaration() { 396 return Statement(kFunctionDeclaration); 399 // Creates expression statement from expression. 402 static Statement ExpressionStatement(Expression expression) { 405 return Statement(kUseStrictExpressionStatement); 408 return Statement(kStringLiteralExpressionStatement); 434 explicit Statement(Type code) : code_(code) { [all...] |
preparser.cc | 147 PreParser::Statement PreParser::ParseSourceElement(bool* ok) { 150 // Statement 173 // (Statement)* <end_token> 177 Statement statement = ParseSourceElement(CHECK_OK); local 179 if (statement.IsUseStrictLiteral()) { 182 } else if (!statement.IsStringLiteral()) { 193 if (!*ok) return Statement::Default(); \ 199 PreParser::Statement PreParser::ParseStatement(bool* ok) { 200 // Statement : 273 Statement statement = ParseFunctionDeclaration(CHECK_OK); local [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteProgram.java | 69 + bindArgs.length + " arguments were provided but the statement needs " 124 * Bind a NULL value to this statement. The value remains bound until 134 * Bind a long value to this statement. The value remains bound until 145 * Bind a double value to this statement. The value remains bound until 156 * Bind a String value to this statement. The value remains bound until 170 * Bind a byte array value to this statement. The value remains bound until 214 + "The statement has " + mNumParameters + " parameters.");
|