Home | History | Annotate | Download | only in src

Lines Matching refs:body

393   Statement* body() const { return body_; }
405 void Initialize(Statement* body) {
406 body_ = body;
422 void Initialize(Expression* cond, Statement* body) {
423 IterationStatement::Initialize(body);
454 void Initialize(Expression* cond, Statement* body) {
455 IterationStatement::Initialize(body);
489 Statement* body) {
490 IterationStatement::Initialize(body);
534 body) {
535 IterationStatement::Initialize(body);
1679 ZoneList<Statement*>* body,
1690 body_(body),
1708 ZoneList<Statement*>* body() const { return body_; }
2001 RegExpQuantifier(int min, int max, Type type, RegExpTree* body)
2002 : body_(body),
2005 min_match_(min * body->min_match()),
2007 if (max > 0 && body->max_match() > kInfinity / max) {
2010 max_match_ = max * body->max_match();
2019 RegExpTree* body,
2033 RegExpTree* body() { return body_; }
2046 explicit RegExpCapture(RegExpTree* body, int index)
2047 : body_(body), index_(index) { }
2051 static RegExpNode* ToNode(RegExpTree* body,
2062 RegExpTree* body() { return body_; }
2074 RegExpLookahead(RegExpTree* body,
2078 : body_(body),
2092 RegExpTree* body() { return body_; }