Lines Matching defs:cond
1367 // Parse a C-style for loop: 'for (<init>; <cond>; <next>) { ... }'
1371 ZonePtrList<const AstRawString>* own_labels, ExpressionT* cond,
5731 ExpressionT cond = ParseExpression();
5740 loop->Initialize(cond, body);
5762 ExpressionT cond = ParseExpression();
5769 loop->Initialize(cond, body);
5995 // for (<init>; <cond>; <next>) { ... }
6123 ExpressionT cond = impl()->NullExpression();
6127 ParseStandardForLoop(stmt_pos, labels, own_labels, &cond, &next, &body);
6129 loop->Initialize(init, cond, next, body);
6257 ExpressionT cond = impl()->NullExpression();
6264 ParseStandardForLoop(stmt_pos, labels, own_labels, &cond, &next, &body);
6274 loop, init, cond, next, body, inner_scope, *for_info);
6298 loop->Initialize(impl()->NullStatement(), cond, next, body);
6302 loop->Initialize(init, cond, next, body);
6309 ZonePtrList<const AstRawString>* own_labels, ExpressionT* cond,
6316 *cond = ParseExpression();