HomeSort by relevance Sort by last modified time
    Searched defs:Statement (Results 1 - 25 of 37) sorted by null

1 2

  /external/junit/src/org/junit/runners/model/
Statement.java 11 public abstract class Statement {
  /external/chromium/app/sql/
statement.h 19 // Possible return values from ColumnType in a statement. These should match
30 // sql::Statement s(connection_.GetUniqueStatement(...));
31 // if (!s) // You should check for errors before using the statement.
41 class Statement {
43 // Creates an uninitialized statement. The statement will be invalid until
45 Statement();
47 explicit Statement(scoped_refptr<Connection::StatementRef> ref);
48 ~Statement();
50 // Initializes this object with the given statement, which may or may no
    [all...]
statement.cc 5 #include "app/sql/statement.h"
18 // we don't have to NULL-check the ref_ to see if the statement is valid: we
20 Statement::Statement()
25 Statement::Statement(scoped_refptr<Connection::StatementRef> ref)
30 Statement::~Statement() {
31 // Free the resources associated with this statement. We assume there's only
32 // one statement active for a given sqlite3_stmt at any time, so this won'
    [all...]
  /external/chromium_org/sql/
statement.h 19 // Possible return values from ColumnType in a statement. These should match
30 // sql::Statement s(connection_.GetUniqueStatement(...));
35 // If there are errors getting the statement, the statement will be inert; no
44 class SQL_EXPORT Statement {
46 // Creates an uninitialized statement. The statement will be invalid until
48 Statement();
50 explicit Statement(scoped_refptr<Connection::StatementRef> ref);
51 ~Statement();
    [all...]
statement.cc 5 #include "sql/statement.h"
15 // we don't have to NULL-check the ref_ to see if the statement is valid: we
17 Statement::Statement()
22 Statement::Statement(scoped_refptr<Connection::StatementRef> ref)
27 Statement::~Statement() {
28 // Free the resources associated with this statement. We assume there's only
29 // one statement active for a given sqlite3_stmt at any time, so this won'
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
Statement.java 6 public class Statement {
10 private List<Statement> contents = new ArrayList<Statement>();
12 Statement(int lineNumber, String line) {
17 void addStatement(Statement statement){
19 // contents = new ArrayList<Statement>();
21 contents.add(statement);
32 public List<Statement> getContents() {
46 for (Statement statement : contents)
    [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 {} {
threadtest3.c 393 typedef struct Statement Statement;
412 Statement *pCache; /* Linked list of cached statements */
417 struct Statement {
418 sqlite3_stmt *pStmt; /* Pre-compiled statement handle */
419 Statement *pNext; /* Next statement in linked-list */
531 Statement *pIter;
532 Statement *pNext;
559 static Statement *getSqlStatement
    [all...]
  /libcore/luni/src/main/java/java/sql/
Statement.java 23 * {@code Statement} object, only one {@code ResultSet} can be opened at one
24 * time. A call to any of the execution methods of {@code Statement} will cause
25 * any previously created {@code ResultSet} object for that {@code Statement} to
29 * {@code Statement} objects must be created and then executed.
31 * To obtain such an executable statement one needs to invoke {@code
37 public interface Statement extends Wrapper, AutoCloseable {
53 * statement.
74 * Indicates that a batch statement was executed with a successful result,
81 * Statement}.
88 * {@code UPDATE} statement
    [all...]
  /frameworks/base/tools/aidl/
AST.h 111 struct Statement
113 virtual ~Statement();
117 struct StatementBlock : public Statement
119 vector<Statement*> statements;
125 void Add(Statement* statement);
129 struct ExpressionStatement : public Statement
229 struct VariableDeclaration : public Statement
241 struct IfStatement : public Statement
252 struct ReturnStatement : public Statement
    [all...]
AST.cpp 208 Statement::~Statement()
232 StatementBlock::Add(Statement* statement)
234 this->statements.push_back(statement);
  /external/chromium_org/v8/src/
preparser.h 423 class Statement {
425 static Statement Default() {
426 return Statement(kUnknownStatement);
429 static Statement FunctionDeclaration() {
430 return Statement(kFunctionDeclaration);
433 // Creates expression statement from expression.
436 static Statement ExpressionStatement(Expression expression) {
439 return Statement(kUseStrictExpressionStatement);
442 return Statement(kStringLiteralExpressionStatement);
468 explicit Statement(Type code) : code_(code) {
    [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...]
ast.h 140 class Statement;
257 class Statement: public AstNode {
259 Statement() : statement_pos_(RelocInfo::kNoPosition) {}
406 class BreakableStatement: public Statement {
413 // The labels associated with this statement. May be NULL;
455 void AddStatement(Statement* statement, Zone* zone) {
456 statements_.Add(statement, zone);
459 ZoneList<Statement*>* statements() { return &statements_; }
483 ZoneList<Statement*> statements_
1088 Statement* statement() const { return statement_; } function in class:v8::internal::WithStatement
    [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/clang/include/clang/Analysis/
CFG.h 52 Statement,
108 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
118 return E.getKind() == Statement;
175 // Get statement end of which triggered the destructor call.
245 /// CFGTerminator - Represents CFGBlock terminator statement.
249 /// statement is the same statement that branches control flow in evaluation
279 /// (2) A "terminator" statement (not in the set of statements).
286 /// within the set of statements in the block (usually the last statement).
356 /// refer to the loop statement for such blocks (and be null otherwise)
    [all...]
  /external/v8/src/
preparser.h 389 class Statement {
391 static Statement Default() {
392 return Statement(kUnknownStatement);
395 static Statement FunctionDeclaration() {
396 return Statement(kFunctionDeclaration);
399 // Creates expression statement from expression.
402 static Statement ExpressionStatement(Expression expression) {
405 return Statement(kUseStrictExpressionStatement);
408 return Statement(kStringLiteralExpressionStatement);
434 explicit Statement(Type code) : code_(code) {
    [all...]
ast.h 131 class Statement;
223 virtual Statement* AsStatement() { return NULL; }
250 class Statement: public AstNode {
252 Statement() : statement_pos_(RelocInfo::kNoPosition) {}
254 virtual Statement* AsStatement() { return this; }
371 class BreakableStatement: public Statement {
378 // The labels associated with this statement. May be NULL;
418 void AddStatement(Statement* statement) { statements_.Add(statement); }
962 Statement* statement() const { return statement_; } function in class:v8::internal::WithStatement
    [all...]
  /external/robolectric/lib/main/
junit-dep-4.8.2.jar 
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
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/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 

Completed in 1259 milliseconds

1 2