HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 176 - 200 of 278) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/test/mjsunit/regress/
regress-69.js 28 // This tests a switch statement with only default clause leaves
regress-937896.js 29 // discard duplicates which caused the outer-most continue statement
regress-52801.js 33 // (where x is undefined), but the assignment to x after the with-statement is
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java 28 import java.sql.Statement;
33 Statement statement = conn.createStatement(); local
34 assertNotNull(statement);
36 assertEquals(ResultSet.FETCH_UNKNOWN, statement.getFetchDirection());
37 assertNull(statement.getWarnings());
38 assertTrue(statement.getQueryTimeout() > 0);
41 statement.executeQuery("select * from zoo");
50 Statement st = null;
183 Statement st = null
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
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...]
  /cts/tools/dasm/src/dasm/
parser.cup 102 statement, statements, stmnt, super_spec, line_expr,
550 statements ::= statements statement | statement ;
552 statement ::=
  /external/mdnsresponder/mDNSShared/
dnsextd_parser.y 362 statements statement
365 statement: label
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricTestRunner.java 22 import org.junit.runners.model.Statement;
274 @Override protected Statement methodBlock(final FrameworkMethod method) {
284 final Statement statement = super.methodBlock(method); local
285 return new Statement() {
289 statement.evaluate();
  /external/v8/test/mjsunit/
debug-step-2.js 74 // Set a breakpoint on the first var statement (line 1).
debug-step-3.js 78 // Set a breakpoint on the first var statement (line 1).
global-load-from-eval-in-with.js 28 // Tests global loads from eval inside of a with statement.
debug-evaluate-recursive.js 134 // Test functions - one with break point and one with debugger statement.
debug-liveedit-patch-positions.js 49 // Find all *$* markers in text of the function and read corresponding statement
strict-mode-implicit-receiver.js 83 // statement as the receiver.
  /external/v8/src/
prettyprinter.cc 183 Visit(node->statement());
442 ExpressionStatement* statement = local
444 Visit(statement->expression());
502 void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) {
734 void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) {
862 PrintIndentedVisit("BODY", node->statement());
rewriter.cc 50 void Process(ZoneList<Statement*>* statements);
92 void Processor::Process(ZoneList<Statement*>* statements) {
206 Visit(node->statement());
242 ZoneList<Statement*>* body = function->body();
252 // Set the position of the assignment statement one character past the
262 Statement* result_statement =
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...]
  /external/webkit/Source/WebCore/loader/icon/
IconDatabase.cpp     [all...]
  /external/bison/doc/
refcard.tex 404 non-terminal : {\it statement} 1
405 | {\it statement} 2
407 | {\it statement n}
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang.y 126 %type <interm.intermNode> statement simple_statement
    [all...]
glslang_tab.cpp 797 "declaration_statement", "statement", "simple_statement",
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 208 Statement::~Statement()
232 StatementBlock::Add(Statement* statement)
234 this->statements.push_back(statement);
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...]
  /external/chromium/third_party/libevent/
event_rpcgen.py     [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorCPP.pm 558 my $statement = " if (!impl())\n";
559 $statement .= " return$returnType;\n\n";
560 return $statement;
    [all...]

Completed in 799 milliseconds

1 2 3 4 5 6 78 91011>>