Searched refs:statements (Results 1 - 25 of 33) sorted by relevance

12

/external/libvpx/examples/includes/geshi/geshi/
H A Dabap.php28 * 1) control statements (blue), 2) declarative statements (red-maroon),
29 * 3) other statements (blue-green), 4) keywords (violet).
32 * Control, declarative and other statements are assigned URLs to sap documentation website:
40 * - Major Release, more than 1000 statements and keywords added = whole abap 7.1 (Sandra Rossi)
48 * solve it as we should define syntaxes of all statements (huge effort!) and use a lex
51 * are used as keyword in some statements. For example: FORM xxxx TABLES itab. It was
56 * - for statements like "READ DATASET", GeSHi does not allow to set URLs because these
57 * statements are determined by REGEXPS. For "READ DATASET", the URL should be
549 'statements int
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dwhile-002.js25 "result = \"fail: should not have evaluated statements in while block;break"
31 "result = \"fail: should not have evaluated statements in while block; break"
37 "result = \"fail: should not have evaluated statements in while block; break;"
43 "result = \"fail: should not have evaluated statements in while block; break"
49 "result = \"fail: should not have evaluated statements in while block; break"
57 this.statements = s;
64 eval( object.statements );
H A Dwhile-003.js57 this.statements = s;
61 result = "fail: statements in while block were not evaluated";
64 eval( object.statements );
/external/v8/src/
H A Drewriter.cc48 void Process(ZoneList<Statement*>* statements);
84 void Processor::Process(ZoneList<Statement*>* statements) { argument
85 for (int i = statements->length() - 1; i >= 0; --i) {
86 Visit(statements->at(i));
100 if (!node->is_initializer_block()) Process(node->statements());
175 // Rewrite statements in all case clauses in reversed order.
180 Process(clause->statements());
H A Dprettyprinter.h69 virtual void PrintStatements(ZoneList<Statement*>* statements);
99 void PrintStatements(ZoneList<Statement*>* statements);
H A Dprettyprinter.cc55 PrintStatements(node->statements());
56 if (node->statements()->length() > 0) Print(" ");
487 void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) { argument
488 for (int i = 0; i < statements->length(); i++) {
490 Visit(statements->at(i));
590 PrintStatements(clause->statements());
591 if (clause->statements()->length() > 0)
721 void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) { argument
722 for (int i = 0; i < statements->length(); i++) {
723 Visit(statements
[all...]
H A Dast.cc803 void AstVisitor::VisitStatements(ZoneList<Statement*>* statements) { argument
804 for (int i = 0; i < statements->length(); i++) {
805 Visit(statements->at(i));
1156 ZoneList<Statement*>* statements,
1159 statements_(statements),
1155 CaseClause(Expression* label, ZoneList<Statement*>* statements, int pos) argument
H A Ddata-flow.cc191 VisitStatements(stmt->statements());
253 VisitStatements(clause->statements());
H A Dast.h354 ZoneList<Statement*>* statements() { return &statements_; } function in class:v8::internal::Block
650 CaseClause(Expression* label, ZoneList<Statement*>* statements, int pos);
658 ZoneList<Statement*>* statements() const { return statements_; } function in class:v8::internal::CaseClause
702 // If-statements always have non-null references to their then- and
703 // else-parts. When parsing if-statements with no explicit else-part,
2152 virtual void VisitStatements(ZoneList<Statement*>* statements);
H A Dhydrogen.h785 virtual void VisitStatements(ZoneList<Statement*>* statements);
913 // visiting statements.
916 // A stack of breakable statements entered.
H A Dfull-codegen.cc105 // Switch statements breakable if the tag expression is.
117 // Mark while statements breakable if the condition expression is.
123 // Mark for statements breakable if the condition expression is.
131 // Mark for in statements breakable if the enumerable expression is.
607 // breakable. For breakable statements the actual recording of the
905 VisitStatements(stmt->statements());
1000 // Exit all nested statements.
H A Dhydrogen.cc2395 void HGraphBuilder::VisitStatements(ZoneList<Statement*>* statements) { argument
2396 for (int i = 0; i < statements->length(); i++) {
2397 Visit(statements->at(i));
2422 VisitStatements(stmt->statements());
2558 // We only optimize switch statements with smi-literal smi comparisons,
2654 VisitStatements(clause->statements());
4112 // All statements in the body must be inlineable.
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js89 "toplevel": function(statements) {
90 return [ this[0], MAP(statements, walk) ];
92 "block": function(statements) {
94 if (statements != null)
95 out.push(MAP(statements, walk));
674 // 4. transform consecutive statements using the comma operator
676 function tighten(statements, block_type) {
677 statements = statements.reduce(function(a, stat){
688 statements
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.cpp78 ScopeNodeData::ScopeNodeData(ParserArena& arena, SourceElements* statements, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, int numConstants) argument
80 , m_statements(statements)
H A DASTBuilder.h292 CaseClauseNode* createClause(ExpressionNode* expr, JSC::SourceElements* statements) { return new (m_globalData) CaseClauseNode(m_globalData, expr, statements); } argument
336 StatementNode* createForLoop(ExpressionNode* initializer, ExpressionNode* condition, ExpressionNode* iter, StatementNode* statements, bool b, int start, int end) argument
338 ForNode* result = new (m_globalData) ForNode(m_globalData, initializer, condition, iter, statements, b);
343 StatementNode* createForInLoop(const Identifier* ident, ExpressionNode* initializer, ExpressionNode* iter, StatementNode* statements, int start, int divot, int end, int initStart, int initEnd, int startLine, int endLine) argument
345 ForInNode* result = new (m_globalData) ForInNode(m_globalData, *ident, initializer, iter, statements, initStart, initStart - start, initEnd - initStart);
351 StatementNode* createForInLoop(ExpressionNode* lhs, ExpressionNode* iter, StatementNode* statements, int eStart, int eDivot, int eEnd, int start, int end) argument
353 ForInNode* result = new (m_globalData) ForInNode(m_globalData, lhs, iter, statements);
H A DNodeConstructors.h831 inline CaseClauseNode::CaseClauseNode(JSGlobalData*, ExpressionNode* expr, SourceElements* statements) argument
833 , m_statements(statements)
872 inline BlockNode::BlockNode(JSGlobalData* globalData, SourceElements* statements) argument
874 , m_statements(statements)
H A DJSParser.cpp1096 TreeSourceElements statements = parseSourceElements<DontCheckForStrictMode>(context); local
1097 failIfFalse(statements);
1098 TreeClause clause = context.createClause(condition, statements);
1107 TreeSourceElements statements = parseSourceElements<DontCheckForStrictMode>(context); local
1108 failIfFalse(statements);
1109 clause = context.createClause(condition, statements);
1121 TreeSourceElements statements = parseSourceElements<DontCheckForStrictMode>(context); local
1122 failIfFalse(statements);
1123 return context.createClause(0, statements);
1394 /* Expression and Label statements ar
[all...]
/external/mesa3d/src/glsl/
H A Dglsl_parser_extras.cpp305 foreach_list_const(n, &this->statements) {
315 ast_node *statements)
319 if (statements != NULL) {
320 this->statements.push_degenerate_list_at_head(&statements->link);
314 ast_compound_statement(int new_scope, ast_node *statements) argument
H A Dast.h295 ast_compound_statement(int new_scope, ast_node *statements);
302 exec_list statements; member in class:ast_compound_statement
642 exec_list statements; member in class:ast_switch_statement
/external/ipsec-tools/src/racoon/
H A Dprsa_par.y154 statements: label
155 statements statement
H A Dcfparse.y266 statements
268 | statements statement
/external/v8/src/mips/
H A Dcodegen-mips.h350 void VisitStatements(ZoneList<Statement*>* statements);
H A Dcodegen-mips.cc400 void CodeGenerator::VisitStatements(ZoneList<Statement*>* statements) { argument
/external/webkit/Tools/android/flex-2.5.4a/
H A Dflex.skl404 * some compilers to complain about unreachable statements.
/external/bison/doc/
H A Drefcard.tex413 Where {\it statements} can be either empty, or contain

Completed in 378 milliseconds

12