Searched refs:IsRegExp (Results 1 - 13 of 13) sorted by relevance
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefiscontainer_fuzzer/ |
H A D | jsvaluerefiscontainer_fuzzer.cpp | 98 regexp->IsRegExp(vm); in JSValueRefIsRegExpFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_regexp_test.cpp | 46 // ASSERT IsRegExp() in HWTEST_F_L0() 48 ASSERT_TRUE(JSObject::IsRegExp(thread, regexpObject)); in HWTEST_F_L0() 81 // ASSERT IsRegExp() in HWTEST_F_L0() 83 ASSERT_TRUE(JSObject::IsRegExp(thread, regexpObject)); in HWTEST_F_L0() 116 // ASSERT IsRegExp() in HWTEST_F_L0() 118 ASSERT_TRUE(JSObject::IsRegExp(thread, regexpObject)); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_string.cpp | 371 bool isRegexp = JSObject::IsRegExp(thread, searchTag); in EndsWith() 417 bool isRegexp = JSObject::IsRegExp(thread, searchTag); in Includes() 660 // a. Let isRegExp be ? IsRegExp(searchValue). in MatchAll() 669 } else if (JSObject::IsRegExp(thread, regexp)) { in MatchAll() 1156 // a. Let isRegExp be ? IsRegExp(searchValue). in ReplaceAll() 1157 bool isJSRegExp = JSObject::IsRegExp(thread, searchTag); in ReplaceAll() 1811 bool isRegexp = JSObject::IsRegExp(thread, searchTag); in StartsWith()
|
H A D | builtins_regexp.cpp | 43 // 1. Let patternIsRegExp be IsRegExp(pattern). in RegExpConstructor() 44 bool patternIsRegExp = JSObject::IsRegExp(thread, pattern); in RegExpConstructor()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | tagged_value_test.cpp | 898 HWTEST_F_L0(JSTaggedValueTest, IsRegExp) in HWTEST_F_L0() 902 ASSERT_FALSE(JSObject::IsRegExp(thread, obj)); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_object.h | 600 static bool IsRegExp(JSThread *thread, const JSHandle<JSTaggedValue> &argument);
|
H A D | js_object.cpp | 150 bool JSObject::IsRegExp(JSThread *thread, const JSHandle<JSTaggedValue> &argument) in IsRegExp() function in panda::ecmascript::JSObject
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_second_tests.cpp | 932 * @tc.name: IsRegExp 953 EXPECT_TRUE(regexp->IsRegExp(vm_)); in HWTEST_F_L0()
|
H A D | ffi_workload.cpp | 4967 res->IsRegExp(vm_); in HWTEST_F_L0() 4970 TEST_TIME(JSValueRef::IsRegExp); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | runtime_impl.cpp | 237 } else if (value->IsRegExp(vm_)) { in GetProperties()
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.cpp | 142 if (tagged->IsRegExp(ecmaVm)) { in FromTagged() 389 if (tagged->IsRegExp(ecmaVm)) { in DescriptionForObject()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi_expo.h | 530 bool IsRegExp(const EcmaVM *vm);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 601 bool JSValueRef::IsRegExp(const EcmaVM *vm) in IsRegExp() function in panda::JSValueRef
|
Completed in 59 milliseconds