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

  /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/v8/src/
preparser.h 76 // A simple this-property assignment is a statement on the form
103 typedef int Statement;
177 Statement ParseStatement(bool* ok);
178 Statement ParseFunctionDeclaration(bool* ok);
179 Statement ParseNativeDeclaration(bool* ok);
180 Statement ParseBlock(bool* ok);
181 Statement ParseVariableStatement(bool* ok);
182 Statement ParseVariableDeclarations(bool accept_IN, int* num_decl, bool* ok);
183 Statement ParseExpressionOrLabelledStatement(bool* ok);
184 Statement ParseIfStatement(bool* ok)
    [all...]
ast.h 153 virtual Statement* AsStatement() { return NULL; }
189 class Statement: public AstNode {
191 Statement() : statement_pos_(RelocInfo::kNoPosition) {}
193 virtual Statement* AsStatement() { return this; }
244 // statement. This is used to transform postfix increments to
298 class BreakableStatement: public Statement {
305 // The labels associated with this statement. May be NULL;
352 void AddStatement(Statement* statement) { statements_.Add(statement); }
    [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 101 struct Statement
103 virtual ~Statement();
109 vector<Statement*> statements;
115 void Add(Statement* statement);
119 struct ExpressionStatement : public Statement
214 struct VariableDeclaration : public Statement
226 struct IfStatement : public Statement
237 struct ReturnStatement : public Statement
246 struct TryStatement : public Statement
    [all...]
AST.cpp 193 Statement::~Statement()
217 StatementBlock::Add(Statement* statement)
219 this->statements.push_back(statement);
  /external/clang/include/clang/Analysis/
CFG.h 52 Statement,
97 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
104 return E->getKind() == Statement;
155 // Get statement end of which triggered the destructor call.
213 /// CFGTerminator - Represents CFGBlock terminator statement.
217 /// statement is the same statement that branches control flow in evaluation
247 /// (2) A "terminator" statement (not in the set of statements).
254 /// within the set of statements in the block (usually the last statement).
323 /// refer to the loop statement for such blocks (and be null otherwise)
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 107 typedef int Statement;
ASTBuilder.h 103 typedef StatementNode* Statement;
429 StatementNode* createWhileStatement(ExpressionNode* expr, StatementNode* statement, int startLine, int endLine)
431 WhileNode* result = new (m_globalData) WhileNode(m_globalData, expr, statement);
436 StatementNode* createDoWhileStatement(StatementNode* statement, ExpressionNode* expr, int startLine, int endLine)
438 DoWhileNode* result = new (m_globalData) DoWhileNode(m_globalData, statement, expr);
443 StatementNode* createLabelStatement(const Identifier* ident, StatementNode* statement, int start, int end)
445 LabelNode* result = new (m_globalData) LabelNode(m_globalData, *ident, statement);
450 StatementNode* createWithStatement(ExpressionNode* expr, StatementNode* statement, int start, int end, int startLine, int endLine)
453 WithNode* result = new (m_globalData) WithNode(m_globalData, expr, statement, end, end - start);
488 void appendStatement(JSC::SourceElements* elements, JSC::StatementNode* statement)
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 157 milliseconds