Searched refs:unicode_cache_ (Results 1 – 12 of 12) sorted by relevance
176 : unicode_cache_(unicode_cache), in Scanner()446 DCHECK(!unicode_cache_->IsWhiteSpaceOrLineTerminator(kEndOfInput)); in TryToParseSourceURLComment()447 if (!unicode_cache_->IsWhiteSpace(c0_)) return; in TryToParseSourceURLComment()453 !unicode_cache_->IsWhiteSpaceOrLineTerminator(c0_) && c0_ != '=') { in TryToParseSourceURLComment()472 while (unicode_cache_->IsWhiteSpace(c0_)) { in TryToParseSourceURLComment()481 if (unicode_cache_->IsWhiteSpace(c0_)) { in TryToParseSourceURLComment()489 if (!unicode_cache_->IsWhiteSpace(c0_)) { in TryToParseSourceURLComment()746 if (unicode_cache_->IsIdentifierStart(c0_) || in Scan()748 unicode_cache_->IsIdentifierStart(c0_))) { in Scan()962 DCHECK(!unicode_cache_->IsIdentifierStart(kEndOfInput)); in ScanPrivateName()[all …]
19 DCHECK(!unicode_cache_->IsWhiteSpace(kEndOfInput)); in SkipWhiteSpace()25 } else if (!unicode_cache_->IsWhiteSpace(c0_)) { in SkipWhiteSpace()
133 UnicodeCache* unicode_cache() const { return unicode_cache_; } in unicode_cache()135 unicode_cache_ = unicode_cache; in set_unicode_cache()254 UnicodeCache* unicode_cache_; variable
24 unicode_cache_(nullptr), in ParseInfo()
327 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache()782 UnicodeCache* unicode_cache_; variable
122 unicode_cache_.reset(new UnicodeCache()); in PrepareOnMainThread()123 parse_info_->set_unicode_cache(unicode_cache_.get()); in PrepareOnMainThread()327 unicode_cache_.reset(); in ResetDataOnMainThread()
73 std::unique_ptr<UnicodeCache> unicode_cache_; variable
55 unicode_cache_(unicode_cache) { in InputReader()119 UnicodeCache* unicode_cache_; variable
222 if (unicode_cache_->IsWhiteSpaceOrLineTerminator(ch_)) { in SkipWhiteSpace()
1046 return unicode_cache_; in unicode_cache()1691 UnicodeCache* unicode_cache_; variable
2462 unicode_cache_(nullptr), in Throw()2706 delete unicode_cache_; in Throw()2707 unicode_cache_ = nullptr; in Throw()2947 unicode_cache_ = new UnicodeCache(); in Throw()
2468 is_identifier_ = unicode_cache_.IsIdentifierStart(chars[0]); in VisitOneByteString()2470 is_identifier_ &= unicode_cache_.IsIdentifierPart(chars[i]); in VisitOneByteString()2478 is_identifier_ = unicode_cache_.IsIdentifierStart(chars[0]); in VisitTwoByteString()2480 is_identifier_ &= unicode_cache_.IsIdentifierPart(chars[i]); in VisitTwoByteString()2488 i::UnicodeCache unicode_cache_; member in v8::IsIdentifierHelper