HomeSort by relevance Sort by last modified time
    Searched refs:Statement (Results 226 - 250 of 277) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /external/clang/lib/Analysis/
CFG.cpp 345 CFG* buildCFG(const Decl *D, Stmt *Statement);
633 /// arbitrary statement. Examples include a single expression or a function
634 /// body (compound statement). The ownership of the returned CFG is
637 CFG* CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
639 if (!Statement)
654 CFGBlock *B = addStmt(Statement);
816 /// for objects in range of local scope positions. Use S as trigger statement
917 /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
925 // For compound statement we will be creating explicit scope.
936 // For any other statement scope will be implicit and as such will b
    [all...]
ThreadSafety.cpp     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 571 /// matches both the compound statement '{ ++a; }' and '++a'.
682 /// Example matches T(t) in return statement of f
844 /// \brief Matches the increment statement of a for loop.
859 /// \brief Matches the initialization statement of a for loop.
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend.h 374 // Statement ----------------------------------------------------------------
375 // Move the statement's current position.
377 history::AndroidStatement* statement,
381 // Close the given statement. The ownership is transfered.
382 void CloseStatement(AndroidStatement* statement);
473 void DatabaseErrorCallback(int error, sql::Statement* stmt);
    [all...]
history_backend_unittest.cc     [all...]
  /external/chromium_org/v8/src/
full-codegen.cc 45 void BreakableStatementChecker::Check(Statement* stmt) {
112 // If the condition is breakable the if statement is breakable.
191 // The debugger statement is breakable.
830 void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
835 // Check if the statement will be breakable without adding a debug break
839 // Record the statement position right here if the statement is not
845 // break slot to make the statement breakable.
865 // Record a statement position right here if the expression is not
868 // NOTE this will record a statement position for something which migh
    [all...]
debug-debugger.js 77 Statement: 0,
276 ? Debug.BreakPositionAlignment.Statement : opt_position_alignment;
527 ? Debug.BreakPositionAlignment.Statement : opt_position_aligment;
701 ? Debug.BreakPositionAlignment.Statement : opt_position_alignment;
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_database_unittest.cc 11 #include "sql/statement.h"
830 sql::Statement statement; local
831 statement.Assign(connection.GetUniqueStatement(kSql));
832 EXPECT_TRUE(statement.is_valid());
838 statement.BindInt64(0, i);
839 statement.BindString(1, kMockOrigin.spec().c_str());
840 statement.BindString(2, namespace_url.spec().c_str());
841 statement.BindString(3, target_url.spec().c_str());
842 ASSERT_TRUE(statement.Run())
1055 sql::Statement statement; local
    [all...]
  /external/v8/src/
full-codegen.cc 44 void BreakableStatementChecker::Check(Statement* stmt) {
104 // If the condition is breakable the if statement is breakable.
177 // The debugger statement is breakable.
684 void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
689 // Check if the statement will be breakable without adding a debug break
693 // Record the statement position right here if the statement is not
699 // break slot to make the statement breakable.
719 // Record a statement position right here if the expression is not
722 // NOTE this will record a statement position for something which migh
    [all...]
hydrogen.h 754 // a breakable statement. Separated from BreakAndContinueScope so that it
916 bool PreProcessOsrEntry(IterationStatement* statement);
917 // True iff. we are compiling for OSR and the statement is the entry.
918 bool HasOsrEntryAt(IterationStatement* statement);
930 HBasicBlock* CreateLoop(IterationStatement* statement,
936 HBasicBlock* JoinContinue(IterationStatement* statement,
979 virtual void VisitStatements(ZoneList<Statement*>* statements);
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 40 import java.sql.Statement;
53 private Statement statement; field in class:OldDatabaseTest
66 statement = conn.createStatement();
75 this.statement.execute("drop table " + tableName);
79 statement.execute(DatabaseCreator.CREATE_TABLE_SIMPLE1);
80 statement.close();
157 fail("Statement should fail");
246 statement.execute(DatabaseCreator.DROP_TABLE1);
315 statement.execute(DatabaseCreator.DROP_TABLE1)
667 String statement = "create table TEST (res double)"; local
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 47 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
190 // If this is a GNU statement expression expanded from a macro, it is probably
192 // expression or statement. Don't warn, because it is almost certainly a
308 // We found the end of the list or a statement. Scan for another declstmt.
319 // Ignore statements that are last in a statement expression.
326 // Check for suspicious empty body (null statement) in `for' and `while'
344 assert((LHSVal != 0) && "missing expression in case statement");
380 /// ActOnCaseStmtBody - This installs a statement as the body of a case.
435 // If the condition was invalid, discard the if statement. We could recover
694 // type, when we started the switch statement. If we don't have a
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/chromium/chrome/browser/history/
history_unittest.cc 26 #include "app/sql/statement.h"
101 // This must be outside the anonymous namespace for the friend statement in
782 sql::Statement s(db.GetUniqueStatement(
history_backend_unittest.cc 809 sql::Statement s(db.GetUniqueStatement(
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
shell.c 292 ** from within an SQL statement. This program used to use the
293 ** sqlite_exec_printf() API to substitue a string into an SQL statement.
420 sqlite3_stmt *pStmt; /* Current statement if any. */
923 ** Execute a query statement that has a single result column. Print
932 const char *zSelect, /* SELECT statement to extract content */
1038 fprintf(pArg->out, "Statement Heap/Lookaside Usage: %d bytes\n", iCur);
1054 ** Execute a statement or set of statements. Print
1070 sqlite3_stmt *pStmt = NULL; /* Statement to execute. */
1098 /* echo the sql statement if echo on */
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 506 // S might be a temporary statement that does not have a location in the
507 // source code, so find an enclosing statement and use its location.
525 // asked for the statement end location).
550 case CFGElement::Statement:
701 // Check if the statement is '?' or '&&'/'||'. These are "merges",
702 // not actual statement points.
717 // We found the statement, so return it.
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 19 * Statement from which result set was produced.
    [all...]
  /external/sqlite/dist/orig/
shell.c 308 ** from within an SQL statement. This program used to use the
309 ** sqlite_exec_printf() API to substitue a string into an SQL statement.
438 sqlite3_stmt *pStmt; /* Current statement if any. */
940 ** Execute a query statement that will generate SQL output. Print
946 ** "--" comment occurs at the end of the statement, the comment
951 const char *zSelect, /* SELECT statement to extract content */
1084 fprintf(pArg->out, "Statement Heap/Lookaside Usage: %d bytes\n", iCur);
1100 ** Execute a statement or set of statements. Print
    [all...]
  /external/sqlite/dist/
shell.c 313 ** from within an SQL statement. This program used to use the
314 ** sqlite_exec_printf() API to substitue a string into an SQL statement.
443 sqlite3_stmt *pStmt; /* Current statement if any. */
945 ** Execute a query statement that will generate SQL output. Print
951 ** "--" comment occurs at the end of the statement, the comment
956 const char *zSelect, /* SELECT statement to extract content */
1089 fprintf(pArg->out, "Statement Heap/Lookaside Usage: %d bytes\n", iCur);
1105 ** Execute a statement or set of statements. Print
    [all...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 493 milliseconds

1 2 3 4 5 6 7 8 91011>>