HomeSort by relevance Sort by last modified time
    Searched full:statement (Results 226 - 250 of 3798) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
compile.h 19 int ff_lineno; /* line number of last future statement */
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 14 def run(statement, filename=None, sort=-1):
15 """Run statement under profiler optionally saving results in filename
18 "exec" statement, and an optional file name. In all cases this
29 prof = prof.run(statement)
39 def runctx(statement, globals, locals, filename=None, sort=-1):
40 """Run statement under profiler, supplying your own globals and locals,
43 statement and filename have the same semantics as profile.run
49 prof = prof.runctx(statement, globals, locals)
130 # a profiler to profile a statement, given as a string.
  /external/chromium_org/sql/
connection_unittest.cc 11 #include "sql/statement.h"
24 sql::Statement s(db->GetUniqueStatement(kMasterCount));
52 void IgnoreErrorCallback(int error, sql::Statement* stmt) {
58 int error, sql::Statement* stmt) {
68 int error, sql::Statement* stmt) {
106 void RazeErrorCallback(int expected_error, int error, sql::Statement* stmt) {
118 // Valid statement should return true.
122 // Invalid statement should fail.
144 // Create a new cached statement.
146 sql::Statement s(db().GetCachedStatement(id1, "SELECT a FROM foo"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.cpp 154 SQLiteStatement statement(*this, "PRAGMA max_page_count");
155 maxPageCount = statement.getColumnInt64(0);
175 SQLiteStatement statement(*this, "PRAGMA max_page_count = " + String::number(newMaxPageCount));
176 statement.prepare();
177 if (statement.step() != SQLResultRow)
196 SQLiteStatement statement(*this, "PRAGMA page_size");
197 m_pageSize = statement.getColumnInt(0);
213 SQLiteStatement statement(*this, "PRAGMA freelist_count");
214 freelistCount = statement.getColumnInt64(0);
228 SQLiteStatement statement(*this, "PRAGMA page_count")
    [all...]
  /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...]
  /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...]
  /external/chromium_org/chrome/browser/history/android/
android_history_types.h 13 #include "sql/statement.h"
16 class Statement;
302 // This class wraps the sql statement and favicon column index in statement if
310 AndroidStatement(sql::Statement* statement, int favicon_index);
313 sql::Statement* statement() { function in class:history::AndroidStatement
317 // The favicon index in statement; -1 is returned if favicon is not in
318 // the statement
    [all...]
  /external/chromium_org/sql/test/
test_helpers.cc 11 #include "sql/statement.h"
18 sql::Statement s(db->GetUniqueStatement(kTypeSQL));
26 sql::Statement s(db->GetUniqueStatement("PRAGMA page_size"));
36 sql::Statement s(db->GetUniqueStatement(kPageSql));
188 sql::Statement s(db->GetUniqueStatement(kQuoteSQL));
195 sql::Statement s(db->GetUniqueStatement(sql.c_str()));
210 sql::Statement s(db->GetUniqueStatement(sql.c_str()));
241 sql::Statement statement(db->GetUniqueStatement("PRAGMA integrity_check"));
244 EXPECT_TRUE(statement.Step())
    [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_org/chrome/browser/history/
history_unittest.cc 62 #include "sql/statement.h"
83 // This must be outside the anonymous namespace for the friend statement in
104 // This must be outside the anonymous namespace for the friend statement in
276 sql::Statement s(db.GetUniqueStatement(
306 sql::Statement s(db.GetUniqueStatement(
312 sql::Statement statement(db.GetUniqueStatement(
317 while (statement.Step()) {
318 EXPECT_EQ(1 + counter, statement.ColumnInt64(0));
321 EXPECT_EQ(((counter == 3) ? 4 : counter), statement.ColumnInt(1))
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table.cc 31 #include "sql/statement.h"
61 sql::Statement* s) {
79 const sql::Statement& s) {
102 sql::Statement* s) {
121 scoped_ptr<CreditCard> CreditCardFromStatement(const sql::Statement& s) {
152 sql::Statement s(db->GetUniqueStatement(
181 sql::Statement s(db->GetUniqueStatement(
204 sql::Statement s(db->GetUniqueStatement(
238 sql::Statement s(db->GetUniqueStatement(
260 sql::Statement s(db->GetUniqueStatement
    [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/chromium_org/chrome/browser/webdata/
web_apps_table.cc 10 #include "sql/statement.h"
80 // Don't bother with a cached statement since this will be a relatively
82 sql::Statement s(db_->GetUniqueStatement(
97 sql::Statement s(db_->GetUniqueStatement(
120 sql::Statement s(db_->GetUniqueStatement(
129 sql::Statement s(db_->GetUniqueStatement(
137 sql::Statement delete_s(db_->GetUniqueStatement(
144 sql::Statement delete_s2(db_->GetUniqueStatement(
  /external/chromium_org/third_party/WebKit/ManualTests/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>
  /external/chromium_org/third_party/sqlite/src/test/
tkt2409.test 16 # any statement other than a COMMIT, an I/O error is returned instead
24 # a db transaction but does not start a statement transaction.
43 # INSERT statement starts a statement transaction. Verify that
110 # statement in which the "I/O error" occured did not open a statement
178 # statement in which the "I/O error" occured did not open a statement
  /external/chromium_org/v8/test/webkit/
debugger.js 25 "This file tests whether the 'debugger' statement throws a syntax error. (IE respects 'debugger' as a statement that behaves like a breakpoint)."
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bigaddrspace.py 20 x = x + '?' # this statement uses a fast path in ceval.c
26 x += '?' # this statement uses a fast path in ceval.c
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bigaddrspace.py 20 x = x + '?' # this statement uses a fast path in ceval.c
26 x += '?' # this statement uses a fast path in ceval.c
  /external/bison/build-aux/
update-copyright 34 # Iff a copyright statement is recognized in a file and the final
35 # year is not the current year, then the statement is updated for the
44 # statement is recognized.
46 # Each file's copyright statement must be formatted correctly in
66 # However, any correctly formatted copyright statement following
69 # The exact conditions that a file's copyright statement must meet
72 # 1. It is the first copyright statement that meets all of the
90 # statement. There is one exception in order to support C-style
97 # within the FSF copyright statement.
103 # 1. If UPDATE_COPYRIGHT_FORCE=1, a recognized FSF copyright statement
    [all...]

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>