HomeSort by relevance Sort by last modified time
    Searched full:statement (Results 176 - 200 of 2690) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/browser/password_manager/
login_database.cc 10 #include "app/sql/statement.h"
138 sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE,
142 NOTREACHED() << "Statement prepare failed";
161 sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE,
170 NOTREACHED() << "Statement prepare failed";
197 sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE,
209 NOTREACHED() << "Statement prepare failed";
237 sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE,
246 NOTREACHED() << "Statement prepare failed";
266 sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE
    [all...]
  /tools/motodev/src/plugins/preflighting.samplecheckers.findviewbyid.ui/src/com/motorolamobility/preflighting/samplechecker/findviewbyid/quickfix/
FindViewByIdMarkerResolution.java 42 import org.eclipse.jdt.core.dom.Statement;
103 //Retrieve block parent for the loop statement.
105 List<Statement> statements = targetBlock.statements();
114 //Verify if the invoke statement contains a variable attribution
154 statements.add(i, (Statement) varDeclarationSubTree.getRoot());
161 statements.add(i, (Statement) copySubtree.getRoot());
241 * Look for Statement containing the invokedMethod
249 if ((parent instanceof Statement))
263 * Resturns the index of the loop statement, inside a list of statements
265 private int getLoopStatementIndex(ASTNode loopNode, List<Statement> statements)
270 Statement statement = statements.get(i); local
    [all...]
  /libcore/luni/src/main/java/java/sql/
Connection.java 125 * Returns a new instance of {@code Statement} for issuing SQL commands to
128 * {@code ResultSets} generated by the returned statement will default to
132 * @return a {@code Statement} object with default settings.
137 public Statement createStatement() throws SQLException;
140 * Returns a new instance of {@code Statement} whose associated {@code
157 * @return a new instance of {@code Statement} capable of manufacturing
163 public Statement createStatement(int resultSetType, int resultSetConcurrency)
167 * Returns a new instance of {@code Statement} whose associated
190 * @return a new instance of {@code Statement} capable of
198 public Statement createStatement(int resultSetType
    [all...]
  /external/junit/src/org/junit/rules/
ExpectedException.java 11 import org.junit.runners.model.Statement;
59 public Statement apply(Statement base,
100 private class ExpectedExceptionStatement extends Statement {
101 private final Statement fNext;
103 public ExpectedExceptionStatement(Statement base) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.5-2.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.
46 var TITLE = "The if statement" ;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
while-002.js 4 * Description: while statement
6 * Verify that the while statement is not executed if the while expression is
14 var TITLE = "while statement";
while-003.js 4 * Description: while statement
6 * The while expression evaluates to true, Statement returns abrupt completion.
13 var TITLE = "while statement";
  /external/webkit/Source/WebCore/manual-tests/inspector/
debugger-step-on-for-statements.html 7 statement();
22 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br>
25 TEST 4: 'Step over' to the statement line and then 'Step over' again. Debugger should pause on
  /tools/motodev/src/plugins/preflighting.samplecheckers.findviewbyid/src/com/motorolamobility/preflighting/samplechecker/findviewbyid/implementation/
FindViewByIdVisitor.java 105 .debug("Found findViewById invocation inside loop statement");
107 //call is inside a loop statement - raise issue
118 * Recursively check if <code>node</code> has a loop statement as parent.
119 * @param node to check if parent is a loop statement
133 //base case of recursion: reached top level (method declaration or class declaration) without finding a loop statement
138 //base case of recursion: reached loop statement
152 * @param statement node to verify
160 private boolean isLoopStatement(ASTNode statement)
162 return statement instanceof ForStatement || statement instanceof DoStatement
    [all...]
  /external/clang/include/clang/AST/
StmtObjC.h 11 /// \brief Defines the Objective-C statement AST node classes.
21 /// \brief Represents Objective-C's collection statement.
72 /// \brief Represents Objective-C's \@catch statement.
120 /// \brief Represents Objective-C's \@finally statement
153 /// \brief Represents Objective-C's \@try ... \@catch ... \@finally statement.
159 // The number of catch blocks in this statement.
162 // Whether this statement has a \@finally statement.
165 /// \brief Retrieve the statements that are stored after this \@try statement.
206 /// \brief Retrieve a \@catch statement
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Authorizer.java 19 * for abort SQL statement with error.
  /frameworks/base/tools/aidl/
options.h 33 // It also prints the usage statement on failure.
  /libcore/luni/src/test/java/libcore/sqlite/
AbstractSqlTest.java 24 import java.sql.Statement;
45 * The statement from the first connection.
47 private Statement firstStmt;
50 * The statement from the second connection.
52 private Statement secondStmt;
133 * @param stmt the statement to be used for the selection of the data
138 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos)
194 * @param stmt the statement to be used to update the data
199 private void updateOnes(Statement stmt, String[] ones_updated, short[] twos)
  /external/libpng/contrib/visupng/
cexcept.h 108 are used by a Try/Catch statement. It does no harm to initialize
112 Try/Catch statement.
115 Try statement
116 Catch (expression) statement
122 A Try/Catch statement has a syntax similar to an if/else statement,
125 clauses, each of which may be a simple statement ending with a
126 semicolon or a brace-enclosed compound statement. But whereas
135 Try/Catch statement, then a copy of the exception will be assigned
154 after the Try/Catch statement
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.cpp 145 SQLiteStatement statement(*this, "PRAGMA max_page_count");
146 maxPageCount = statement.getColumnInt64(0);
166 SQLiteStatement statement(*this, "PRAGMA max_page_count = " + String::number(newMaxPageCount));
167 statement.prepare();
168 if (statement.step() != SQLResultRow)
187 SQLiteStatement statement(*this, "PRAGMA page_size");
188 m_pageSize = statement.getColumnInt(0);
204 SQLiteStatement statement(*this, "PRAGMA freelist_count");
205 freelistCount = statement.getColumnInt64(0);
219 SQLiteStatement statement(*this, "PRAGMA page_count")
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetTest.java 22 import java.sql.Statement;
31 Statement stForward = null;
32 Statement stScrollable = null;
33 Statement stWritable = null;
89 // statement.close() does not wrap up
124 * Test that exception in one prepared statement does not affect second
125 * statement. (Atomicity Rule)
131 Statement s = conn.createStatement();
191 // statement.close() does not wrap up
205 // statement.close() does not wrap u
    [all...]
OldConnectionTest.java 28 import java.sql.Statement;
33 Statement statement = conn.createStatement(); local
34 assertNotNull(statement);
36 assertEquals(ResultSet.FETCH_UNKNOWN, statement.getFetchDirection());
37 assertNull(statement.getWarnings());
38 assertTrue(statement.getQueryTimeout() > 0);
41 statement.executeQuery("select * from zoo");
50 Statement st = null;
183 Statement st = null
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t033backtracking.g 387 // statement
397 // : IDENTIFIER ':' statement
398 // | 'case' constant_expression ':' statement
399 // | 'default' ':' statement
411 // : statement+
420 // : 'if' '(' expression ')' statement (options {k=1; backtrack=false;}:'else' statement)?
421 // | 'switch' '(' expression ')' statement
425 // : 'while' '(' expression ')' statement
426 // | 'do' statement 'while' '(' expression ')' ';
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t033backtracking.g 402 // statement
412 // : IDENTIFIER ':' statement
413 // | 'case' constant_expression ':' statement
414 // | 'default' ':' statement
426 // : statement+
435 // : 'if' '(' expression ')' statement (options {k=1; backtrack=false;}:'else' statement)?
436 // | 'switch' '(' expression ')' statement
440 // : 'while' '(' expression ')' statement
441 // | 'do' statement 'while' '(' expression ')' ';
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-spi.h 195 // statement will cause exactly one fatal Google Test failure with 'substr'
200 // 'statement' throws an exception.
203 // - 'statement' cannot reference local non-static variables or
205 // - 'statement' cannot return a value.
207 #define EXPECT_FATAL_FAILURE(statement, substr) do {\
210 static void Execute() { statement; }\
224 // statement will cause exactly one non-fatal Google Test failure with
227 // 'statement' is allowed to reference local variables and members of
232 // 'statement' throws an exception or aborts the function.
236 #define EXPECT_NONFATAL_FAILURE(statement, substr) do {
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 25 import java.sql.Statement;
40 private static Statement statement; field in class:StressTest
46 statement = conn.createStatement();
53 statement.close();
66 statement.execute(DatabaseCreator.DROP_TABLE2);
69 statement.execute(DatabaseCreator.CREATE_TABLE2);
78 statement.execute(DatabaseCreator.DROP_TABLE2);
100 // statement.execute("DELETE FROM " + DatabaseCreator.TEST_TABLE2);
175 ResultSet rs = statement
    [all...]
  /external/chromium/chrome/browser/debugger/manual_tests/
debugger-step-on-do-while-statements.html 7 statement();
26 TEST 3: 'Step over' to the end of the loop (and 'while' statement) and step over again. Debugger
debugger-step-on-for-statements.html 7 statement();
22 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br>
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>
  /external/webkit/LayoutTests/storage/
transaction-error-callback-isolated-world.html 42 " tx.executeSql('BAD STATEMENT', [], function(tx, data) {}, function(tx, error) { return true; });\n" +
47 tx.executeSql('BAD STATEMENT', [], function(tx, data) {}, function(tx, error) { return true; });

Completed in 2064 milliseconds

1 2 3 4 5 6 78 91011>>