Home
last modified time | relevance | path

Searched refs:IsJSRegExp (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_regexp.h27 CAST_CHECK(JSRegExp, IsJSRegExp);
Djs_regexp_iterator.cpp115 if (!matcher->IsJSRegExp()) { in CreateRegExpStringIterator()
Djs_object-inl.h106 inline bool JSObject::IsJSRegExp() const in IsJSRegExp() function
108 return GetJSHClass()->IsJSRegExp(); in IsJSRegExp()
Djs_tagged_value-inl.h995 inline bool JSTaggedValue::IsJSRegExp() const in IsJSRegExp() function
997 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSRegExp(); in IsJSRegExp()
Djs_tagged_value.h512 bool IsJSRegExp() const;
Djs_object.h539 bool IsJSRegExp() const;
Djs_hclass.h819 inline bool IsJSRegExp() const in IsJSRegExp() function
Djs_object.cpp142 return argumentObj->IsJSRegExp(); in IsRegExp()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.cpp83 isJsReg = patternObj->IsJSRegExp(); in RegExpConstructor()
162 if (!thisObj->IsJSRegExp()) { in Exec()
257 ASSERT(JSHandle<JSObject>::Cast(thisObj)->IsJSRegExp()); in GetFlags()
325 if (!thisObj->IsJSRegExp()) { in GetSource()
407 if (thisObj->IsJSRegExp()) { in Match()
590 ASSERT(regexp->IsJSRegExp()); in RegExpReplaceFast()
771 if (isGlobal && !functionalReplace && thisObj->IsJSRegExp()) { in Replace()
779 if (regexpHandle->IsJSRegExp()) { in Replace()
1158 if (thisObj->IsJSRegExp()) { in Split()
1389 if (!patternObj->IsJSRegExp()) { in GetFlagsInternal()
[all …]
Dbuiltins_object.cpp827 } else if (object->IsJSRegExp()) { in GetBuiltinTag()
Dbuiltins_string.cpp602 if (regexp->IsJSRegExp()) { in Match()
839 if (searchTag->IsJSRegExp() && replaceTag->IsString()) { in Replace()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp587 EXPECT_TRUE(res->IsJSRegExp()) << "[NotJSRegexp] Deserialize JSRegExp fail"; in JSRegexpTest()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3174 return JSNApiHelper::ToJSTaggedValue(this).IsJSRegExp(); in IsRegExp()