Home
last modified time | relevance | path

Searched refs:IsJSObject (Results 1 – 23 of 23) sorted by relevance

/ark/js_runtime/ecmascript/builtins/
Dbuiltins_date_time_format.cpp65 if (newTarget->IsUndefined() && thisValue->IsJSObject() && isInstanceOf) { in DateTimeFormatConstructor()
107 if (!thisValue->IsJSObject()) { in Format()
148 …ASSERT_PRINT(dtf->IsJSObject() && dtf->IsJSDateTimeFormat(), "dtf is not object or JSDateTimeForma… in AnonymousDateTimeFormat()
216 if (!thisValue->IsJSObject()) { in ResolvedOptions()
242 if (!thisValue->IsJSObject()) { in FormatRange()
287 if (!thisValue->IsJSObject()) { in FormatRangeToParts()
Dbuiltins_number_format.cpp68 if (newTarget->IsUndefined() && thisValue->IsJSObject() && isInstanceOf) { in NumberFormatConstructor()
109 if (!thisValue->IsJSObject()) { in Format()
164 if (!thisValue->IsJSObject()) { in ResolvedOptions()
195 ASSERT(nf->IsJSObject() && nf->IsJSNumberFormat()); in NumberFormatInternalFormatNumber()
Dbuiltins_collator.cpp122 …ASSERT_PRINT(collator->IsJSObject() && collator->IsJSCollator(), "collator is not object or JSColl… in AnonymousCollator()
Dbuiltins_relative_time_format.cpp52 if (newTarget->IsUndefined() && thisValue->IsJSObject() && isInstanceOf) { in RelativeTimeFormatConstructor()
Dbuiltins_locale.cpp46 if (!tag->IsString() && !tag->IsJSObject()) { in LocaleConstructor()
/ark/js_runtime/ecmascript/
Djs_for_in_iterator.cpp36 if (!object->IsJSObject()) { in CheckObjProto()
45 if (!proto.IsJSObject()) { in CheckObjProto()
219 if (object->IsJSObject() && notModiObjProto) { in NextInternal()
230 if (object->IsJSObject() && notModiObjProto) { in NextInternal()
Djs_tagged_value-inl.h493 inline bool JSTaggedValue::IsJSObject() const in IsJSObject() function
495 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSObject(); in IsJSObject()
Djs_tagged_value.h248 bool IsJSObject() const;
Djs_relative_time_format.cpp223 ASSERT_PRINT(rtf->IsJSObject(), "rtf is not a JSObject"); in UnwrapRelativeTimeFormat()
Djs_hclass.h342 inline bool IsJSObject() const in IsJSObject() function
Djs_number_format.cpp863 ASSERT(nf->IsJSObject()); in UnwrapNumberFormat()
Djs_locale.cpp254 if (!kValue->IsString() && !kValue->IsJSObject()) { in CanonicalizeHelper()
Djs_date_time_format.cpp740 ASSERT_PRINT(dateTimeFormat->IsJSObject(), "dateTimeFormat is not object"); in UnwrapDateTimeFormat()
Djs_object.cpp1282 if (tagObj->IsJSObject() && !tagObj->IsTypedArray()) { in EnumerableOwnNames()
/ark/js_runtime/ecmascript/ic/
Dic_runtime.cpp138 if (receiver->IsTypedArray() || !receiver->IsJSObject()) { in LoadMiss()
177 if (receiver->IsTypedArray() || !receiver->IsJSObject()) { in StoreMiss()
/ark/js_runtime/ecmascript/interpreter/
Dslow_runtime_helper.cpp196 ASSERT(handler->IsJSObject()); in ConstructProxy()
Dfast_runtime_stub-inl.h1155 if (receiver.IsJSObject() && !receiver.IsTypedArray() && (key.IsStringOrSymbol())) { in FastSetProperty()
1179 if (receiver.IsJSObject() && !receiver.IsTypedArray() && (key.IsStringOrSymbol())) { in FastGetProperty()
Dinterpreter-inl.h2476 … if (receiver.IsJSObject() && !receiver.IsClassConstructor() && !receiver.IsClassPrototype()) { in RunInternal()
3226 … if (receiver.IsJSObject() && !receiver.IsClassConstructor() && !receiver.IsClassPrototype()) { in RunInternal()
Dinterpreter_assembly.cpp2307 if (receiver.IsJSObject() && !receiver.IsClassConstructor() && !receiver.IsClassPrototype()) { in HandleStOwnByNamePrefId32V8()
3145 if (receiver.IsJSObject() && !receiver.IsClassConstructor() && !receiver.IsClassPrototype()) { in HandleStOwnByNameWithNameSetPrefId32V8()
Dslow_runtime_stub.cpp687 ASSERT(objVal.IsJSObject()); in CreateObjectWithExcludedKeys()
/ark/js_runtime/ecmascript/compiler/
Dstub.h641 inline GateRef IsJSObject(GateRef obj);
Dinterpreter_stub.cpp3314 Branch(IsJSObject(receiver), &isJSObject, &slowPath); in DECLARE_ASM_HANDLER()
3364 Branch(IsJSObject(receiver), &isJSObject, &notJSObject); in DECLARE_ASM_HANDLER()
Dstub-inl.h1202 GateRef Stub::IsJSObject(GateRef obj) in IsJSObject() function