Searched refs:_curchar (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp162 if (_curchar != '(') {
169 if ( (_curchar != '%')
170 || ( next_char(), (_curchar != '{')) ) {
178 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
253 } while(_curchar != '%');
255 if (_curchar != '}') {
418 if (_curchar != '(') {
425 if ((_curchar != '%') || (*(_ptr+1) != '{')) { // If not open block
433 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
483 } while(_curchar !
[all...]
H A Dadlparse.hpp76 char _curchar; // Current character from buffer member in class:ADLParser
241 // Final stop-char is left in _curchar, but is also is replaced by '\0'.
254 // Advance to next character, assign this to _curchar

Completed in 46 milliseconds