Home
last modified time | relevance | path

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

/ark/js_runtime/ecmascript/hprof/
Dheap_snapshot.cpp209 case JSType::JS_ARRAY: { in GenerateNodeName()
389 nodeType = NodeType::JS_ARRAY; in GenerateNodeType()
727 } else if (type == NodeType::JS_ARRAY || type == NodeType::JS_TYPED_ARRAY) { in Convert()
/ark/js_runtime/ecmascript/
Djs_hclass.h117JS_ARRAY, /* ///////////////////////////////////////////////////////////////////////////////…
408 return GetObjectType() == JSType::JS_ARRAY; in IsJSArray()
989 return IsStableElementsBit::Decode(bits) && (type == JSType::JS_ARRAY); in IsStableJSArray()
Djs_serializer.h55 JS_ARRAY, enumerator
Djs_serializer.cpp260 case JSType::JS_ARRAY: in WriteTaggedObject()
368 if (!WriteType(SerializationUID::JS_ARRAY)) { in WriteJSArray()
830 case SerializationUID::JS_ARRAY: in DeserializeJSTaggedValue()
Ddump.cpp142 case JSType::JS_ARRAY: in DumpJSType()
464 case JSType::JS_ARRAY: in DumpObject()
2438 case JSType::JS_ARRAY: in DumpObject()
Dobject_factory.cpp531 JSHandle<JSHClass> arrayDynclass = NewEcmaDynClass(JSArray::SIZE, JSType::JS_ARRAY, proto); in CreateJSArrayInstanceClass()
711 case JSType::JS_ARRAY: { in NewJSObjectByConstructor()
/ark/js_runtime/ecmascript/mem/
Dobject_xray-inl.h181 case JSType::JS_ARRAY: in VisitObjectBody()
/ark/js_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md45 … points to as a pointer (e.g. `JS_HEAP_OBJECT` `JS_STRING` `JS_OBJECT` `JS_ARRAY` `JS_TYPED_ARRAY`…
65 …:<JS_ANY>=VALUE_SELECTOR(a:<JS_STRING>, b:<JS_ARRAY>) -> c:<JS_HEAP_OBJECT>=JS_ADD(a:<JS_STRING>, …
Dstub-inl.h1277 return Int32Equal(objectType, GetInt32Constant(static_cast<int32_t>(JSType::JS_ARRAY))); in IsJsArray()
1639 return Int32GreaterThan(jsType, GetInt32Constant(static_cast<int32_t>(JSType::JS_ARRAY))); in IsSpecialIndexedObj()
/ark/js_runtime/ecmascript/interpreter/
Dfast_runtime_stub-inl.h168 return jsType > JSType::JS_ARRAY; in IsSpecialIndexedObj()
772 return jsType > JSType::JS_ARRAY && jsType <= JSType::JS_PRIMITIVE_REF; in IsSpecialIndexedObjForGet()
778 return jsType >= JSType::JS_ARRAY && jsType <= JSType::JS_PRIMITIVE_REF; in IsSpecialIndexedObjForSet()
/ark/js_runtime/ecmascript/base/
Djson_stringifier.cpp358 case JSType::JS_ARRAY: { in SerializeJSONProperty()
/ark/js_runtime/ecmascript/tests/
Ddump_test.cpp451 case JSType::JS_ARRAY: { in HWTEST_F_L0()