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

  /external/chromium_org/v8/src/
scanner.cc 35 : unicode_cache_(unicode_cache),
259 if (unicode_cache_->IsLineTerminator(c0_)) {
261 } else if (!unicode_cache_->IsWhiteSpace(c0_) &&
300 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
310 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
321 if (!unicode_cache_->IsWhiteSpace(c0_))
325 while (c0_ >= 0 && !unicode_cache_->IsWhiteSpaceOrLineTerminator(c0_) &&
344 while (c0_ >= 0 && unicode_cache_->IsWhiteSpace(c0_)) {
347 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
353 if (unicode_cache_->IsWhiteSpace(c0_))
    [all...]
dateparser.h 54 unicode_cache_(unicode_cache) {
102 if (unicode_cache_->IsWhiteSpaceOrLineTerminator(ch_)) {
134 UnicodeCache* unicode_cache_; member in class:v8::internal::DateParser::BASE_EMBEDDED
scanner.h 411 UnicodeCache* unicode_cache() { return unicode_cache_; }
620 UnicodeCache* unicode_cache_; member in class:v8::internal::Scanner
isolate.cc     [all...]
isolate.h     [all...]
  /external/chromium_org/v8/tools/
lexer-shell.cc 61 unicode_cache_ = new UnicodeCache();
62 scanner_ = new Scanner(unicode_cache_);
91 delete unicode_cache_;
103 UnicodeCache* unicode_cache_; member in class:BaselineScanner

Completed in 157 milliseconds