Searched refs:unicode_cache_ (Results 1 – 9 of 9) sorted by relevance
40 : unicode_cache_(unicode_cache), in Scanner()299 if (unicode_cache_->IsLineTerminator(c0_)) { in SkipWhiteSpace()301 } else if (!unicode_cache_->IsWhiteSpace(c0_) && in SkipWhiteSpace()340 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) { in SkipSingleLineComment()350 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) { in SkipSourceURLComment()361 if (c0_ < 0 || !unicode_cache_->IsWhiteSpace(c0_)) return; in TryToParseSourceURLComment()364 while (c0_ >= 0 && !unicode_cache_->IsWhiteSpaceOrLineTerminator(c0_) && in TryToParseSourceURLComment()383 while (c0_ >= 0 && unicode_cache_->IsWhiteSpace(c0_)) { in TryToParseSourceURLComment()386 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) { in TryToParseSourceURLComment()392 if (unicode_cache_->IsWhiteSpace(c0_)) { in TryToParseSourceURLComment()[all …]
412 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache()687 UnicodeCache* unicode_cache_; variable
114 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache()116 unicode_cache_ = unicode_cache; in set_unicode_cache()185 UnicodeCache* unicode_cache_; variable
49 unicode_cache_(nullptr), in ParseInfo()
55 unicode_cache_(unicode_cache) { in InputReader()119 UnicodeCache* unicode_cache_; variable
213 if (unicode_cache_->IsWhiteSpaceOrLineTerminator(ch_)) { in SkipWhiteSpace()
854 return unicode_cache_; in unicode_cache()1232 UnicodeCache* unicode_cache_; variable
1760 unicode_cache_(NULL), in Isolate()1958 delete unicode_cache_; in ~Isolate()1959 unicode_cache_ = NULL; in ~Isolate()2122 unicode_cache_ = new UnicodeCache(); in Init()
1873 is_identifier_ = unicode_cache_.IsIdentifierStart(chars[0]); in VisitOneByteString()1875 is_identifier_ &= unicode_cache_.IsIdentifierPart(chars[i]); in VisitOneByteString()1883 is_identifier_ = unicode_cache_.IsIdentifierStart(chars[0]); in VisitTwoByteString()1885 is_identifier_ &= unicode_cache_.IsIdentifierPart(chars[i]); in VisitTwoByteString()1893 i::UnicodeCache unicode_cache_; member in v8::IsIdentifierHelper