HomeSort by relevance Sort by last modified time
    Searched defs:statement (Results 26 - 48 of 48) sorted by null

12

  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java 221 // logged together with the most recently executed SQL statement,
258 * the compiled query statement ids returned by sqlite database.
259 * key = sql statement with "?" for bind args
1547 SQLiteStatement statement = null; local
1601 SQLiteStatement statement = null; local
1684 SQLiteStatement statement = null; local
1780 SQLiteStatement statement = null; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
c-pretty-print.h 80 c_pretty_print_fn statement; member in struct:c_pretty_print_info
130 pp_c_base (PPI)->statement (pp_c_base (PPI), S)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-pretty-print.h 80 c_pretty_print_fn statement; member in struct:c_pretty_print_info
130 pp_c_base (PPI)->statement (pp_c_base (PPI), S)
  /external/sqlite/android/
sqlite3_android.cpp 220 sqlite3_stmt * statement = (sqlite3_stmt *)data; local
221 sqlite3_finalize(statement);
298 // Get or create the prepared statement for the insertions
299 sqlite3_stmt * statement = (sqlite3_stmt *)sqlite3_get_auxdata(context, 0); local
300 if (!statement) {
307 err = sqlite3_prepare_v2(handle, sql, -1, &statement, NULL);
314 // This binds the statement to the table it was compiled against, which is argv[0].
317 sqlite3_set_auxdata(context, 0, statement, tokenize_auxdata_delete);
319 // Reset the cached statement so that binding the row ID will work properly
320 sqlite3_reset(statement);
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteDatabase.cpp 101 sqlite3_stmt * statement = NULL; local
139 err = sqlite3_prepare_v2(handle, integritySql, -1, &statement, NULL);
147 err = sqlite3_step(statement);
153 const char *text = (const char*)sqlite3_column_text(statement, 0);
175 if (statement != NULL) sqlite3_finalize(statement);
248 sqlite3_stmt * statement = NULL; local
258 err = sqlite3_prepare16_v2(handle, sql, sqlLen * 2, &statement, NULL);
270 stepErr = sqlite3_step(statement);
271 err = sqlite3_finalize(statement);
    [all...]
  /external/v8/src/
full-codegen.h 48 void VisitStatements(ZoneList<Statement*>* stmts);
113 virtual bool IsContinueTarget(Statement* target) { return false; }
114 virtual bool IsBreakTarget(Statement* target) { return false; }
116 // Generate code to leave the nested statement. This includes
120 // nested statement's stack, and returns a number of stack
121 // elements left on top of the surrounding statement's stack.
146 virtual bool IsBreakTarget(Statement* statement) {
147 return target_ == statement;
149 BreakableStatement* statement() { return target_; function in class:v8::internal::FullCodeGenerator::Breakable
    [all...]
prettyprinter.cc 420 ExpressionStatement* statement = local
422 Visit(statement->expression());
480 void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) {
749 void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) {
    [all...]
parser.cc 161 void* ParseSourceElements(ZoneListWrapper<Statement>* processor,
163 Statement* ParseStatement(ZoneStringList* labels, bool* ok);
164 Statement* ParseFunctionDeclaration(bool* ok);
165 Statement* ParseNativeDeclaration(bool* ok);
169 Statement* ParseExpressionOrLabelledStatement(ZoneStringList* labels,
172 Statement* ParseContinueStatement(bool* ok);
173 Statement* ParseBreakStatement(ZoneStringList* labels, bool* ok);
174 Statement* ParseReturnStatement(bool* ok);
179 Statement* ParseWithStatement(ZoneStringList* labels, bool* ok);
184 Statement* ParseForStatement(ZoneStringList* labels, bool* ok)
1355 ZoneListWrapper<Statement> statement = factory()->NewList<Statement>(1); local
1794 TryStatement* statement = ParseTryStatement(CHECK_OK); local
2481 SwitchStatement* statement = NEW(SwitchStatement(labels)); local
2598 TryCatchStatement* statement = local
    [all...]
  /frameworks/base/tools/aidl/
aidl.cpp 84 buffer_type statement; member in struct:import_info
100 main_import_parsed(buffer_type* statement)
105 import->statement.lineno = statement->lineno;
106 import->statement.data = strdup(statement->data);
107 import->statement.extra = NULL;
109 import->neededClass = parse_import_statement(statement->data);
148 import_import_parsed(buffer_type* statement)
791 import->from, import->statement.lineno
    [all...]
  /libcore/luni/src/test/java/tests/support/
DatabaseCreator.java 22 import java.sql.Statement;
257 Statement statement = conn.createStatement(); local
258 statement
260 statement.execute("INSERT INTO " + PARENT_TABLE + " VALUES(2,'test2')");
261 statement
266 Statement statement = conn.createStatement(); local
267 statement.execute("INSERT INTO " + FKSTRICT_TABLE
269 statement.execute("INSERT INTO " + FKSTRICT_TABL
276 Statement statement = conn.createStatement(); local
286 Statement statement = conn.createStatement(); local
293 Statement statement = conn.createStatement(); local
301 Statement statement = conn.createStatement(); local
312 Statement statement = conn.createStatement(); local
324 Statement statement = conn.createStatement(); local
340 Statement statement = conn.createStatement(); local
352 Statement statement = conn.createStatement(); local
370 Statement statement = conn.createStatement(); local
386 Statement statement = conn.createStatement(); local
396 Statement statement = conn.createStatement(); local
    [all...]
  /libcore/luni/src/test/java/tests/SQLite/
DatabaseTest.java 39 import java.sql.Statement;
77 private Statement statement; field in class:DatabaseTest
91 statement = conn.createStatement();
101 this.statement.execute("drop table "+tableName);
106 // statement = conn.createStatement();
107 statement.execute(DatabaseCreator.CREATE_TABLE_SIMPLE1);
108 statement.close();
265 fail("Statement should fail");
429 statement.execute(DatabaseCreator.DROP_TABLE1)
1206 String statement = "create table TEST (res double)"; local
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 39 import java.sql.Statement;
60 protected static Statement statement; field in class:DatabaseMetaDataTest
62 protected static Statement statementForward;
72 statement = conn.createStatement();
86 statement = conn.createStatement();
105 statement.execute(DatabaseCreator.DROP_TABLE1);
108 statement.execute(DatabaseCreator.DROP_TABLE3);
110 statement.execute(DROP_VIEW_QUERY);
114 statement.execute(DatabaseCreator.CREATE_TABLE3)
    [all...]
DatabaseMetaDataNotSupportedTest.java 37 import java.sql.Statement;
54 protected static Statement statement; field in class:DatabaseMetaDataNotSupportedTest
56 protected static Statement statementForward;
66 statement = conn.createStatement();
77 statement = conn.createStatement();
96 statement.execute(DatabaseCreator.DROP_TABLE1);
99 statement.execute(DatabaseCreator.DROP_TABLE3);
101 statement.execute(DROP_VIEW_QUERY);
105 statement.execute(DatabaseCreator.CREATE_TABLE3)
    [all...]
  /external/gtest/src/
gtest-death-test.cc 168 // to executing the given statement. It is the responsibility of the
190 // code; and RETURNED means that the test statement attempted a "return,"
312 bool DeathTest::Create(const char* statement, const RE* regex,
315 statement, regex, file, line, test);
333 DeathTestImpl(const char* statement, const RE* regex)
334 : statement_(statement),
342 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
399 WindowsDeathTest(const char* statement,
403 : DeathTestImpl(statement, regex), file_(file), line_(line) {}
641 ForkingDeathTest(const char* statement, const RE* regex)
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 168 // to executing the given statement. It is the responsibility of the
190 // code; and RETURNED means that the test statement attempted a "return,"
292 bool DeathTest::Create(const char* statement, const RE* regex,
295 statement, regex, file, line, test);
311 DeathTestImpl(const char* statement, const RE* regex)
312 : statement_(statement),
326 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
456 buffer << "Death test: " << statement() << "\n";
463 buffer << " Result: illegal return in test statement.\n"
522 WindowsDeathTest(const char* statement,
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 995 final String statement = "DELETE FROM test WHERE _id=?;"; local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactAggregator.java 98 /** Precompiled sql statement for setting an aggregated presence */
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/jython/
jython.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 349 milliseconds

12