Lines Matching refs:current_
86 current_(), in Reader()
101 current_(), in Reader()
153 current_ = begin_; in parse()
227 lastValueEnd_ = current_; in readValue()
267 token.start_ = current_; in readToken()
333 token.end_ = current_; in readToken()
341 while ( current_ != end_ ) in skipSpaces()
343 Char c = *current_; in skipSpaces()
345 ++current_; in skipSpaces()
356 if ( end_ - current_ < patternLength ) in match()
360 if ( current_[index] != pattern[index] ) in match()
362 current_ += patternLength; in match()
370 Location commentBegin = current_ - 1; in readComment()
385 if ( c != '*' || !containsNewLine( commentBegin, current_ ) ) in readComment()
389 addComment( commentBegin, current_, placement ); in readComment()
418 while ( current_ != end_ ) in readCStyleComment()
421 if ( c == '*' && *current_ == '/' ) in readCStyleComment()
431 while ( current_ != end_ ) in readCppStyleComment()
444 while ( current_ != end_ ) in readNumber()
446 if ( !(*current_ >= '0' && *current_ <= '9') && in readNumber()
447 !in( *current_, '.', 'e', 'E', '+', '-' ) ) in readNumber()
449 ++current_; in readNumber()
457 while ( current_ != end_ ) in readString()
533 if ( *current_ == ']' ) // empty array in readArray()
829 if ( current_ == end_ ) in getNextChar()
831 return *current_++; in getNextChar()