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

  /external/v8/src/
unicode-cache-inl.h 24 bool UnicodeCache::IsLineTerminator(unibrow::uchar c) {
31 if (!IsLineTerminator(c)) return false;
unicode-cache.h 26 inline bool IsLineTerminator(unibrow::uchar c);
  /external/v8/src/parsing/
scanner.cc 315 if (unicode_cache_->IsLineTerminator(c0_)) {
356 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
366 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
402 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
415 while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
432 if (c0_ >= 0 && unicode_cache_->IsLineTerminator(ch)) {
766 if (!in_template_literal && c0_ >= 0 && unicode_cache_->IsLineTerminator(c)) {
865 && !unicode_cache_->IsLineTerminator(c0_)) {
915 if (c0_ > 0 && unicode_cache_->IsLineTerminator(c0_)) {
    [all...]

Completed in 56 milliseconds