Home
last modified time | relevance | path

Searched refs:unicode_cache_ (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/parsing/
Dscanner.cc40 : 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 …]
Dscanner.h412 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache()
687 UnicodeCache* unicode_cache_; variable
Dparser.h114 UnicodeCache* unicode_cache() { return unicode_cache_; } in unicode_cache()
116 unicode_cache_ = unicode_cache; in set_unicode_cache()
185 UnicodeCache* unicode_cache_; variable
Dparser.cc49 unicode_cache_(nullptr), in ParseInfo()
/external/v8/src/
Ddateparser.h55 unicode_cache_(unicode_cache) { in InputReader()
119 UnicodeCache* unicode_cache_; variable
Ddateparser-inl.h213 if (unicode_cache_->IsWhiteSpaceOrLineTerminator(ch_)) { in SkipWhiteSpace()
Disolate.h854 return unicode_cache_; in unicode_cache()
1232 UnicodeCache* unicode_cache_; variable
Disolate.cc1760 unicode_cache_(NULL), in Isolate()
1958 delete unicode_cache_; in ~Isolate()
1959 unicode_cache_ = NULL; in ~Isolate()
2122 unicode_cache_ = new UnicodeCache(); in Init()
Dapi.cc1873 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