HomeSort by relevance Sort by last modified time
    Searched refs:Statement (Results 151 - 175 of 239) sorted by null

1 2 3 4 5 67 8 910

  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table_unittest.cc 15 #include "sql/statement.h"
105 sql::Statement s(db_->GetDatabase()->GetUniqueStatement(
  /prebuilts/misc/common/android-support-test/
android-support-test.jar 
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider_unittest.cc 231 sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line.c_str()));
248 sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line.c_str()));
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 132 # Return a result set for a SELECT statement.
160 # SELECT statement. This tends to cause parser stack overflow (too
196 # Return a SELECT statement.
199 # returned SELECT statement returns a single column of data.
230 # Generate and return a fuzzy INSERT statement.
245 # Generate and return a fuzzy UPDATE statement.
263 proc Statement {} {
  /external/llvm/utils/vim/
llvm.vim 91 HiLink llvmStatement Statement
  /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...]
DatabaseMetaDataNotSupportedTest.java 34 import java.sql.Statement;
50 protected static Statement statement; field in class:DatabaseMetaDataNotSupportedTest
52 protected static Statement statementForward;
62 statement = conn.createStatement();
73 statement = conn.createStatement();
92 statement.execute(DatabaseCreator.DROP_TABLE1);
95 statement.execute(DatabaseCreator.DROP_TABLE3);
97 statement.execute(DROP_VIEW_QUERY);
101 statement.execute(DatabaseCreator.CREATE_TABLE3)
    [all...]
DatabaseMetaDataTest.java 35 import java.sql.Statement;
55 protected static Statement statement; field in class:DatabaseMetaDataTest
57 protected static Statement statementForward;
67 statement = conn.createStatement();
81 statement = conn.createStatement();
100 statement.execute(DatabaseCreator.DROP_TABLE1);
103 statement.execute(DatabaseCreator.DROP_TABLE3);
105 statement.execute(DROP_VIEW_QUERY);
109 statement.execute(DatabaseCreator.CREATE_TABLE3)
    [all...]
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.h 146 void VisitIfNotNull(Statement* stmt);
377 // Either 'break' or 'continue' the target statement.
388 // Find the correct scope for the target statement. Note that this also drops
  /external/chromium_org/v8/src/
ast.cc 644 void AstVisitor::VisitStatements(ZoneList<Statement*>* statements) {
646 Statement* stmt = statements->at(i);
655 // The variable statement visiting code may pass NULL expressions
995 ZoneList<Statement*>* statements, int pos, IdGen* id_gen)
    [all...]
typing.cc 128 void AstTyper::VisitStatements(ZoneList<Statement*>* stmts) {
130 Statement* stmt = stmts->at(i);
195 RECURSE(stmt->statement());
227 ZoneList<Statement*>* stmts = clause->statements();
prettyprinter.cc 170 Visit(node->statement());
485 ExpressionStatement* statement = local
487 Visit(statement->expression());
545 void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) {
759 void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) {
843 IndentedScope indent(this, "MODULE STATEMENT");
850 IndentedScope indent(this, "EXPRESSION STATEMENT");
891 PrintIndentedVisit("BODY", node->statement());
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2.jar 
  /external/chromium_org/chrome/browser/history/
in_memory_url_index_unittest.cc 240 sql::Statement sql_stmt(db.GetUniqueStatement(sql_cmd_line));
250 sql::Statement statement(db.GetUniqueStatement(
252 ASSERT_TRUE(statement.is_valid());
258 while (statement.Step()) {
260 history_database_->FillURLRow(statement, &row);
272 statement.Assign(db.GetUniqueStatement(
274 ASSERT_TRUE(statement.is_valid());
278 while (statement.Step()) {
280 history_database_->FillVisitRow(statement, &row)
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 614 /// matches both the compound statement '{ ++a; }' and '++a'.
748 /// Example matches T(t) in return statement of f
901 /// \brief Matches the increment statement of a for loop.
916 /// \brief Matches the initialization statement of a for loop.
939 /// \brief Matches the initialization statement of a for loop.
953 /// \brief Matches the range initialization statement of a for loop.
    [all...]
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database_unittest.cc 13 #include "sql/statement.h"
64 sql::Statement statement(db->GetCachedStatement(SQL_FROM_HERE,
66 statement.BindString16(0, key);
67 statement.BindString16(1, value);
68 ASSERT_TRUE(statement.is_valid());
69 statement.Run();
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 59 // Process an ordinary statement.
147 case CFGElement::Statement: {
245 // Translate a clang statement or expression to a TIL expression.
  /libcore/luni/src/main/java/java/sql/
ResultSet.java 47 * <dd>{@code Statement aStatement = con.createStatement(
80 * A {@code ResultSet} is closed if the statement which generated it closes, the
81 * statement is executed again, or the same statement's next {@code ResultSet}
82 * is retrieved (if the statement returned of multiple results).
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 519 * expression whose GLSL type corresponds to the C++ type T, and a Statement
520 * represents a statement.
524 * is a shared pointer to a Statement.
532 class Statement;
650 * \brief A statement or declaration.
656 * As a bit of a kludge, a Statement object can also represent a declaration:
661 class Statement
664 virtual ~Statement (void) { }
665 //! Execute the statement, modifying the environment of `ctx`
668 //! Add the functions used in this statement to `dst`
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 35 import java.sql.Statement;
477 public Statement getStatement() throws SQLException {
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_service_browsertest.cc 47 #include "sql/statement.h"
    [all...]
  /external/chromium_org/content/browser/quota/
quota_database_unittest.cc 17 #include "sql/statement.h"
385 sql::Statement statement; local
386 statement.Assign(db->GetCachedStatement(SQL_FROM_HERE, kSql));
387 ASSERT_TRUE(statement.is_valid());
389 statement.BindString(0, itr->host);
390 statement.BindInt(1, static_cast<int>(itr->type));
391 statement.BindInt64(2, itr->quota);
392 EXPECT_TRUE(statement.Run());
404 sql::Statement statement local
    [all...]

Completed in 1625 milliseconds

1 2 3 4 5 67 8 910