HomeSort by relevance Sort by last modified time
    Searched refs:pushback_limit_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/
scanner-character-streams.cc 48 pushback_limit_(NULL) {
62 if (pushback_limit_ == NULL && buffer_cursor_ > buffer_) {
74 // and the start of the buffer (from buffer start to pushback_limit_)
76 // We NULL the pushback_limit_ if pushing all the way back to the
79 if (pushback_limit_ == NULL) {
81 pushback_limit_ = buffer_end_;
90 pushback_limit_ = NULL;
91 } else if (buffer_cursor_ < pushback_limit_) {
92 pushback_limit_ = buffer_cursor_;
100 if (pushback_limit_ != NULL)
    [all...]
scanner-character-streams.h 34 const uc16* pushback_limit_; member in class:v8::internal::BufferedUtf16CharacterStream

Completed in 629 milliseconds