Home
last modified time | relevance | path

Searched refs:IsJSRelativeTimeFormat (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_relative_time_format.cpp97 if (!thisValue->IsJSRelativeTimeFormat()) { in Format()
130 if (!thisValue->IsJSRelativeTimeFormat()) { in FormatToParts()
163 if (!thisValue->IsJSRelativeTimeFormat()) { in ResolvedOptions()
/arkcompiler/ets_runtime/ecmascript/
Djs_relative_time_format.h43 CAST_CHECK(JSRelativeTimeFormat, IsJSRelativeTimeFormat);
Djs_relative_time_format.cpp244 if (!rtf->IsJSRelativeTimeFormat() && isInstanceOf) { in UnwrapRelativeTimeFormat()
252 if (!rtf->IsJSRelativeTimeFormat()) { in UnwrapRelativeTimeFormat()
Djs_tagged_value-inl.h459 inline bool JSTaggedValue::IsJSRelativeTimeFormat() const in IsJSRelativeTimeFormat() function
461 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSRelativeTimeFormat(); in IsJSRelativeTimeFormat()
Djs_tagged_value.h616 bool IsJSRelativeTimeFormat() const;
Djs_hclass.h1103 inline bool IsJSRelativeTimeFormat() const in IsJSRelativeTimeFormat() function
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_relative_time_format_test.cpp48 EXPECT_TRUE(result.IsJSRelativeTimeFormat()); in HWTEST_F_L0()
72 EXPECT_TRUE(result.IsJSRelativeTimeFormat()); in JSRelativeTimeFormatCreateWithLocaleTest()
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefismodulenamespace_fuzzer/
Djsvaluerefismodulenamespace_fuzzer.cpp302 relative->IsJSRelativeTimeFormat(vm); in IsJSRelativeTimeFormatFuzztest()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h571 bool IsJSRelativeTimeFormat(const EcmaVM *vm);
/arkcompiler/ets_runtime/ecmascript/napi/test/
Dffi_workload.cpp1486 JSNApiHelper::ToLocal<JSValueRef>(jsTaggedValue)->IsJSRelativeTimeFormat(vm_); in HWTEST_F_L0()
1489 TEST_TIME(JSValueRef::IsJSRelativeTimeFormat); in HWTEST_F_L0()
1491 JSNApiHelper::ToLocal<JSValueRef>(jsTaggedValue)->IsJSRelativeTimeFormat(vm_); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp467 if (tagged->IsJSRelativeTimeFormat(ecmaVm)) { in DescriptionForObject()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp839 bool JSValueRef::IsJSRelativeTimeFormat(const EcmaVM *vm) in IsJSRelativeTimeFormat() function in panda::JSValueRef
842 return JSNApiHelper::ToJSTaggedValue(this).IsJSRelativeTimeFormat(); in IsJSRelativeTimeFormat()