Searched defs:IterationStatement (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dast.h129 class IterationStatement;
227 virtual IterationStatement* AsIterationStatement() { return NULL; }
678 class IterationStatement: public BreakableStatement { class in namespace:v8::internal
681 virtual IterationStatement* AsIterationStatement() { return this; }
694 IterationStatement(Isolate* isolate, ZoneStringList* labels) function in class:v8::internal::IterationStatement
711 class DoWhileStatement: public IterationStatement {
716 IterationStatement::Initialize(body);
736 : IterationStatement(isolate, labels),
751 class WhileStatement: public IterationStatement {
756 IterationStatement
[all...]
/external/chromium_org/v8/src/
H A Dast.h138 class IterationStatement;
229 virtual IterationStatement* AsIterationStatement() { return NULL; }
724 class IterationStatement : public BreakableStatement { class in namespace:v8::internal
727 virtual IterationStatement* AsIterationStatement() V8_FINAL V8_OVERRIDE {
741 IterationStatement(Isolate* isolate, ZoneStringList* labels, int pos) function in class:v8::internal::IterationStatement
759 class DoWhileStatement V8_FINAL : public IterationStatement {
764 IterationStatement::Initialize(body);
776 : IterationStatement(isolate, labels, pos),
790 class WhileStatement V8_FINAL : public IterationStatement {
795 IterationStatement
[all...]

Completed in 215 milliseconds