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:IsJSRegExp
(Results
1 - 18
of
18
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_regexp.h
34
CAST_CHECK(JSRegExp,
IsJSRegExp
);
H
A
D
js_regexp_iterator.cpp
111
if (!matcher->
IsJSRegExp
()) {
in CreateRegExpStringIterator()
H
A
D
js_object-inl.h
122
inline bool JSObject::
IsJSRegExp
() const
in IsJSRegExp()
function in panda::ecmascript::JSObject
124
return GetJSHClass()->
IsJSRegExp
();
in IsJSRegExp()
H
A
D
js_tagged_value-inl.h
880
inline bool JSTaggedValue::
IsJSRegExp
() const
in IsJSRegExp()
function in panda::ecmascript::JSTaggedValue
882
return IsHeapObject() && GetTaggedObject()->GetClass()->
IsJSRegExp
();
in IsJSRegExp()
H
A
D
object_operator.cpp
324
(receiver.
IsJSRegExp
() || receiver == env->GetTaggedRegExpPrototype())) {
in UpdateDetector()
394
(receiver.
IsJSRegExp
() || receiver == env->GetTaggedRegExpPrototype())) {
in UpdateDetector()
H
A
D
js_tagged_value.h
476
bool
IsJSRegExp
() const;
H
A
D
js_object.h
626
bool
IsJSRegExp
() const;
H
A
D
js_hclass.h
1078
inline bool
IsJSRegExp
() const
in IsJSRegExp()
function in panda::ecmascript::JSHClass
H
A
D
js_object.cpp
163
return argumentObj->
IsJSRegExp
();
in IsRegExp()
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_regexp.cpp
77
isJsReg = patternObj->
IsJSRegExp
();
in RegExpConstructor()
156
if (!thisObj->
IsJSRegExp
()) {
in Exec()
524
if (!thisObj->
IsJSRegExp
()) {
in GetSource()
832
ASSERT(regexp->
IsJSRegExp
());
in RegExpReplaceFast()
1887
if (!patternObj->
IsJSRegExp
()) {
in GetFlagsInternal()
1979
ASSERT(regexp->
IsJSRegExp
());
in RegExpBuiltinExec()
2208
if (!regexp->
IsJSRegExp
()) {
in RegExpExec()
H
A
D
builtins_object.cpp
934
} else if (object->
IsJSRegExp
()) {
in GetBuiltinObjectToString()
H
A
D
builtins_string.cpp
1028
if (searchTag->
IsJSRegExp
() && replaceTag->IsString()) {
in Replace()
1045
if (searchTag->
IsJSRegExp
() && PropertyDetector::IsRegExpReplaceDetectorValid(env)) {
in Replace()
/arkcompiler/ets_runtime/ecmascript/serializer/
H
A
D
base_deserializer.cpp
230
ASSERT(obj.IsArrayBuffer() || obj.
IsJSRegExp
());
in ResetNativePointerBuffer()
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
stub_builder.h
470
GateRef
IsJSRegExp
(GateRef obj);
H
A
D
stub_builder-inl.h
1618
inline GateRef StubBuilder::
IsJSRegExp
(GateRef obj)
in IsJSRegExp()
function in panda::ecmascript::kungfu::StubBuilder
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
H
A
D
serializer_test.cpp
685
EXPECT_TRUE(res->
IsJSRegExp
()) << "[NotJSRegexp] Deserialize JSRegExp fail";
in JSRegexpTest()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H
A
D
builtins_string_stub_builder.cpp
845
BRANCH(LogicOrBuilder(env).Or(
IsJSRegExp
(searchTag)).Or(IsEcmaObject(searchTag)).Done(), slowPath, &next);
in Replace()
/arkcompiler/ets_runtime/ecmascript/napi/
H
A
D
jsnapi_expo.cpp
604
return JSNApiHelper::ToJSTaggedValue(this).
IsJSRegExp
();
in IsRegExp()
Completed in 79 milliseconds