Home
last modified time | relevance | path

Searched refs:IsLineTerminator (Results 1 - 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/parsing/
H A Dscanner.cc214 AdvanceUntil([](base::uc32 c0) { return unibrow::IsLineTerminator(c0); }); in SkipSingleLineComment()
221 if (unibrow::IsLineTerminator(c0_) || c0_ == kEndOfInput) { in SkipSourceURLComment()
258 while (c0_ != kEndOfInput && !unibrow::IsLineTerminator(c0_)) { in TryToParseSourceURLComment()
266 while (c0_ != kEndOfInput && !unibrow::IsLineTerminator(c0_)) { in TryToParseSourceURLComment()
283 return unibrow::IsLineTerminator(c0); in SkipMultiLineComment()
297 if (unibrow::IsLineTerminator(c0_)) { in SkipMultiLineComment()
378 DCHECK(!unibrow::IsLineTerminator(kEndOfInput)); in ScanEscape()
379 if (!capture_raw && unibrow::IsLineTerminator(c)) { in ScanEscape()
549 DCHECK(!unibrow::IsLineTerminator(kEndOfInput)); in ScanTemplateSpan()
551 if (unibrow::IsLineTerminator(c0 in ScanTemplateSpan()
[all...]
/third_party/node/deps/v8/src/objects/
H A Djs-regexp.cc254 bool IsLineTerminator(int c) { in IsLineTerminator() function
256 return unibrow::IsLineTerminator(static_cast<unibrow::uchar>(c)); in IsLineTerminator()
272 if (i + 1 < src.length() && IsLineTerminator(src[i + 1])) { in CountAdditionalEscapeChars()
300 DCHECK(!IsLineTerminator(c)); in CountAdditionalEscapeChars()
328 if (s + 1 < src.length() && IsLineTerminator(src[s + 1])) { in WriteEscapedRegExpSource()
361 DCHECK(!IsLineTerminator(c)); in WriteEscapedRegExpSource()
/third_party/node/deps/v8/src/strings/
H A Dchar-predicates.h85 return IsWhiteSpaceSlow(c) || unibrow::IsLineTerminator(c); in IsWhiteSpaceOrLineTerminatorSlow()
H A Dunicode.h224 V8_INLINE bool IsLineTerminator(uchar c) { in IsLineTerminator() function
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-interpreter.cc37 return unibrow::IsLineTerminator(context[position - 1]); in SatisfiesAssertion()
40 return unibrow::IsLineTerminator(context[position]); in SatisfiesAssertion()

Completed in 4 milliseconds