Home | History | Annotate | Download | only in src

Lines Matching refs:WHILE

773 // or appear to do so while actually ignoring all operations.
1674 while (peek() != end_token) {
1754 case Token::WHILE:
1936 while (!done) {
1948 // accessible while parsing the first time not when reparsing
2013 while (peek() != Token::RBRACE) {
2196 // for constant lookups is always the function context, while it is
2203 } while (peek() == Token::COMMA);
2465 while (peek() != Token::CASE &&
2492 while (peek() != Token::RBRACE) {
2570 // Allocate a temporary for holding the finally state while
2587 // Declare a variable for holding the finally state while
2630 // 'do' Statement 'while' '(' Expression ')' ';'
2637 Expect(Token::WHILE, CHECK_OK);
2649 // semi-colons. This allows code such as 'do;while(0)return' to
2661 // 'while' '(' Expression ')' Statement
2666 Expect(Token::WHILE, CHECK_OK);
2781 while (peek() == Token::COMMA) {
2867 while (Precedence(peek(), accept_IN) == prec1) {
3054 while (true) {
3167 while (true) {
3388 while (peek() != Token::RBRACK) {
3533 while (peek() != Token::RBRACE) {
3557 continue; // restart the while
3667 while (!done) {
3711 while (!done) {
3810 // The extension structures are only accessible while parsing the
4118 } while (Check(Token::COMMA));
4150 } while (Check(Token::COMMA));
4275 // Used to store current state while parsing subexpressions.
4280 while (true) {
4633 while ((n = current()) != kEndMarker) {
4641 while ((c = current()) != kEndMarker) {
4669 while (true) {
4714 while (IsDecimalDigit(current())) {
4720 } while (IsDecimalDigit(current()));
4737 while (IsDecimalDigit(current())) {
4742 } while (IsDecimalDigit(current()));
4924 while (has_more() && current() != ']') {