Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:IsLineTerminator
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/parsing/
H
A
D
scanner.cc
214
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
D
js-regexp.cc
254
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
D
char-predicates.h
85
return IsWhiteSpaceSlow(c) || unibrow::
IsLineTerminator
(c);
in IsWhiteSpaceOrLineTerminatorSlow()
H
A
D
unicode.h
224
V8_INLINE bool
IsLineTerminator
(uchar c) {
in IsLineTerminator()
function
/third_party/node/deps/v8/src/regexp/experimental/
H
A
D
experimental-interpreter.cc
37
return unibrow::
IsLineTerminator
(context[position - 1]);
in SatisfiesAssertion()
40
return unibrow::
IsLineTerminator
(context[position]);
in SatisfiesAssertion()
Completed in 4 milliseconds