Lines Matching defs:next

96       continue;                  // Get the next line
176 ident = get_ident(); // Grab next identifier
431 ident = get_ident(); // Grab next identifier
519 ident = get_ident(); // Grab next identifier
919 char *start = _ptr; // Record start of the next string
925 // ELSE advance to the next character, or start of the next line
1281 ident = get_ident(); // Grab next identifier
1332 ident = get_ident(); // Grab next identifier
1639 ident = get_ident(); // Grab next identifier
1658 expr = get_ident(); // Grab next identifier
1674 expr = get_ident(); // Grab next identifier
1720 ident = get_ident(); // Grab next identifier
1755 ident = get_ident(); // Grab next identifier
1784 ident = get_ident(); // Grab next identifier
2339 // Check for ',' and position to next token.
2408 // Check for ',' and position to next token.
2606 // Construct the next PeepConstraint
2826 char *start = _ptr; // Record start of the next string
2832 // ELSE advance to the next character, or start of the next line
2977 skipws(); // Skip to next parameter
3128 char *start = _ptr; // Record start of the next string
3493 char *start = _ptr; // Record start of the next string
3601 char *start = _ptr; // Record start of the next string
3636 skipws(); // Skip white space before next string token
3686 char *start = _ptr; // Record start of the next string
3692 // ELSE advance to the next character, or start of the next line
3736 char *start = _ptr; // Record start of the next string
3766 skipws(); // Skip white space before next string token
3842 ident = get_ident(); // Grab next identifier
4133 char *next; // Pointer for finding block delimiters
4146 next = _ptr + 1;
4147 while(((_curchar != '%') || (*next != '}')) && (_curchar != '\0')) {
4149 next = _ptr+1; // Maintain the next pointer
4210 // Make sure we do not stray into the next ADLC-level form.
4223 // skip the next character, which is therefore NOT whitespace.
4298 _curchar = c; // Save the first character of next token
4301 _ptr = end; // Reset _ptr to point to next char after token
4402 // Return the next replacement variable identifier, skipping first '$'
4462 // invokes a parse_err if the next token is not an integer.
4486 _curchar = c; // Save the first character of next token
4492 // Reset _ptr to next char after token
4501 // invokes a parse_err if the next token is not a relation
4775 // the next line.
4850 char *next = _ptr + 1;
4858 _ptr = _curline; next = _ptr + 1;
4861 (_curchar == '/' && (*next == '/' || *next == '*'))) {
4869 _ptr = _curline; next = _ptr + 1;
4871 else if ((*_ptr == '/') && (*next == '/')) // C++ comment
4872 do { _ptr++; next++; } while(*_ptr != '\n'); // So go to end of line
4873 else if ((*_ptr == '/') && (*next == '*')) { // C comment
4874 _ptr++; next++;
4876 _ptr++; next++;
4883 _ptr = _curline; next = _ptr + 1;
4885 } while(!((*_ptr == '*') && (*next == '/'))); // Go to end of comment
4886 _ptr = ++next; next++; // increment _ptr past comment end
4897 next = _ptr+1;
4914 next = _ptr + 1;
4916 else { ++_ptr; ++next; }