HomeSort by relevance Sort by last modified time
    Searched defs:Statement (Results 1 - 25 of 29) 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/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...]
  /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/clang/include/clang/ASTMatchers/
ASTMatchers.h 452 /// matches both the compound statement '{ ++a; }' and '++a'.
668 /// \brief Matches the increment statement of a for loop.
683 /// \brief Matches the initialization statement of a for loop.
    [all...]
  /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).
324 /// 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/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...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.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 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 231 milliseconds

1 2