Home
last modified time | relevance | path

Searched refs:IsDictionaryMode (Results 1 – 25 of 36) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_deque.cpp36 ASSERT(!elements->IsDictionaryMode()); in InsertFront()
43 ASSERT(!elements->IsDictionaryMode()); in InsertFront()
57 ASSERT(!elements->IsDictionaryMode()); in InsertEnd()
64 ASSERT(!elements->IsDictionaryMode()); in InsertEnd()
82 ASSERT(!elements->IsDictionaryMode()); in GetFront()
92 ASSERT(!elements->IsDictionaryMode()); in GetTail()
103 ASSERT(!oldElements->IsDictionaryMode()); in GrowCapacity()
119 ASSERT(!elements->IsDictionaryMode()); in PopFirst()
135 ASSERT(!elements->IsDictionaryMode()); in PopLast()
206 ASSERT(!oldElements->IsDictionaryMode()); in OwnKeys()
[all …]
Djs_api_vector.cpp36 ASSERT(!elements->IsDictionaryMode()); in Add()
53 ASSERT(!elements->IsDictionaryMode()); in Insert()
74 ASSERT(!elementData->IsDictionaryMode()); in GetCapacity()
85 ASSERT(!elementData->IsDictionaryMode()); in IncreaseCapacityTo()
105 ASSERT(!elements->IsDictionaryMode()); in GetIndexFrom()
135 ASSERT(!elements->IsDictionaryMode()); in GetLastElement()
159 ASSERT(!elements->IsDictionaryMode()); in GetLastIndexFrom()
176 ASSERT(!elements->IsDictionaryMode()); in Remove()
192 ASSERT(!resElements->IsDictionaryMode()); in RemoveByIndex()
197 ASSERT(!elements->IsDictionaryMode()); in RemoveByIndex()
[all …]
Djs_api_arraylist.cpp37 ASSERT(!elements->IsDictionaryMode()); in Add()
55 ASSERT(!elements->IsDictionaryMode()); in Insert()
68 ASSERT(!elements->IsDictionaryMode()); in Clear()
79 ASSERT(!srcElements->IsDictionaryMode()); in Clone()
94 ASSERT(!elements->IsDictionaryMode()); in GetCapacity()
103 ASSERT(!elementData->IsDictionaryMode()); in IncreaseCapacityTo()
119 ASSERT(!elements->IsDictionaryMode()); in TrimToCurrentLength()
148 ASSERT(!elements->IsDictionaryMode()); in GetIndexOf()
163 ASSERT(!elements->IsDictionaryMode()); in GetLastIndexOf()
190 ASSERT(!elements->IsDictionaryMode()); in RemoveByIndex()
[all …]
Djs_api_queue.cpp32 ASSERT(!elements->IsDictionaryMode()); in Add()
50 ASSERT(!oldElements->IsDictionaryMode()); in GrowCapacity()
80 ASSERT(!elements->IsDictionaryMode()); in GetFirst()
92 ASSERT(!elements->IsDictionaryMode()); in Pop()
161 ASSERT(!oldElements->IsDictionaryMode()); in OwnKeys()
180 ASSERT(!oldElements->IsDictionaryMode()); in OwnEnumKeys()
260 ASSERT(!elements->IsDictionaryMode()); in GetArrayLength()
Djs_api_stack.cpp39 ASSERT(!elements->IsDictionaryMode()); in Push()
53 ASSERT(!elements->IsDictionaryMode()); in Peek()
64 ASSERT(!elements->IsDictionaryMode()); in Pop()
73 ASSERT(!elements->IsDictionaryMode()); in Search()
Djs_api_linked_list.cpp57 ASSERT(!srcDoubleList->IsDictionaryMode()); in Clone()
/arkcompiler/ets_runtime/ecmascript/
Dobject_operator.cpp351 if (!array->IsDictionaryMode()) { in LookupPropertyInlinedProps()
414 if (!receiver->GetJSHClass()->IsDictionaryMode()) { in TransitionForAttributeChanged()
481 if (!elements->IsDictionaryMode()) { in UpdateDataValue()
515 if (receiver->GetJSHClass()->IsDictionaryMode()) { in UpdateDataValue()
524 if (!properties->IsDictionaryMode()) { in UpdateDataValue()
607 if (attrChanged && !properties->IsDictionaryMode()) { in WriteDataProperty()
687 if (!elements->IsDictionaryMode()) { in WriteElement()
701 if (!elements->IsDictionaryMode()) { in DeleteElementInHolder()
766 if (!elements->IsDictionaryMode()) { in LookupElementInlinedProps()
842 if (obj->GetJSHClass()->IsDictionaryMode()) { in AddPropertyInternal()
Dobject_fast_operator-inl.h67 if (LIKELY(!hclass->IsDictionaryMode())) { in GetPropertyByName()
68 …!TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in GetPropertyByName()
89 ASSERT(array->IsDictionaryMode()); in GetPropertyByName()
137 if (LIKELY(!hclass->IsDictionaryMode())) { in SetPropertyByName()
138 …!TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in SetPropertyByName()
175 ASSERT(properties->IsDictionaryMode()); in SetPropertyByName()
247 ASSERT(!elements->IsDictionaryMode()); in GetPropertyByIndex()
303 ASSERT(!elements->IsDictionaryMode()); in SetPropertyByIndex()
514 if (!array->IsDictionaryMode()) { in AddPropertyByName()
Dmessage_string.h50 V(IsDictionaryMode) \
Djs_object.cpp149 ASSERT(!jshclass->IsDictionaryMode()); in TransitionToDictionary()
226 if (!hclass->IsDictionaryMode()) { in IsArrayLengthWritable()
259 ASSERT(elements->IsDictionaryMode()); in AddElementInternal()
296 if (!array->IsDictionaryMode()) { in DeletePropertyInternal()
321 if (!array->IsDictionaryMode()) { in GetAllKeys()
345 if (!array->IsDictionaryMode()) { in GetAllKeysByFilter()
369 if (!array->IsDictionaryMode()) { in GetAllKeys()
392 if (!array->IsDictionaryMode()) { in GetAllEnumKeys()
423 if (!array->IsDictionaryMode()) { in GetAllEnumKeys()
455 if (!elements->IsDictionaryMode()) { in GetAllElementKeys()
[all …]
Dtagged_array.h62 inline bool IsDictionaryMode() const;
Djs_object-inl.h213 return TaggedArray::Cast(GetElements().GetTaggedObject())->IsDictionaryMode(); in IsElementDict()
218 return TaggedArray::Cast(GetProperties().GetTaggedObject())->IsDictionaryMode(); in IsPropertiesDict()
Dtagged_array-inl.h237 inline bool TaggedArray::IsDictionaryMode() const in IsDictionaryMode() function
Djs_stable_array.cpp750 ASSERT(!newArrayHandle->GetJSHClass()->IsDictionaryMode()); in With()
786 ASSERT(!newArrayHandle->GetJSHClass()->IsDictionaryMode()); in ToSpliced()
837 ASSERT(!newArrayHandle->GetJSHClass()->IsDictionaryMode()); in ToReversed()
Djs_hclass.cpp207 if (!obj->GetJSHClass()->IsDictionaryMode()) { in TransitionElementsToDictionary()
793 if (hclass->IsDictionaryMode()) { in DumpForProfile()
Djs_array.cpp184 if (element->IsDictionaryMode()) { in SetCapacity()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_class_analysis.cpp103 if (UNLIKELY(hclass->IsDictionaryMode())) { in AnalyzeProperties()
Dstub_builder-inl.h1008 inline GateRef StubBuilder::IsDictionaryMode(GateRef object) in IsDictionaryMode() function
1010 ASM_ASSERT(GET_MESSAGE_STRING_ID(IsDictionaryMode), TaggedIsHeapObject(object)); in IsDictionaryMode()
1011 GateRef res = env_->GetBuilder()->IsDictionaryMode(object); in IsDictionaryMode()
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_runtime.cpp138 … << ", receiver is " << receiver->GetTaggedObject()->GetClass()->IsDictionaryMode() in TraceIC()
142 … << ", receiver is " << receiver->GetTaggedObject()->GetClass()->IsDictionaryMode() in TraceIC()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dclass_info_extractor.cpp302 if (LIKELY(!constructorHClass->IsDictionaryMode())) { in CorrectConstructorHClass()
357 if (LIKELY(!prototypeHClass->IsDictionaryMode())) { in DefineClassFromExtractor()
383 if (LIKELY(!constructorHClass->IsDictionaryMode())) { in DefineClassFromExtractor()
444 if (LIKELY(!prototype->GetJSHClass()->IsDictionaryMode())) { in DefineClassWithIHClass()
471 if (LIKELY(!constructorHClass->IsDictionaryMode())) { in DefineClassWithIHClass()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_object_test.cpp874 EXPECT_TRUE(TaggedArray::Cast(obj1->GetProperties().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
882 EXPECT_TRUE(TaggedArray::Cast(obj1->GetProperties().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
910 EXPECT_FALSE(TaggedArray::Cast(obj1->GetProperties().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
915 EXPECT_TRUE(TaggedArray::Cast(obj1->GetProperties().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
933 EXPECT_TRUE(!TaggedArray::Cast(obj1->GetElements().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
936 EXPECT_TRUE(!TaggedArray::Cast(obj1->GetElements().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
939 EXPECT_TRUE(!TaggedArray::Cast(obj1->GetElements().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
943 EXPECT_TRUE(TaggedArray::Cast(obj1->GetElements().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
950 EXPECT_TRUE(!TaggedArray::Cast(obj2->GetElements().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
953 EXPECT_TRUE(!TaggedArray::Cast(obj2->GetElements().GetTaggedObject())->IsDictionaryMode()); in HWTEST_F_L0()
[all …]
Djs_hclass_test.cpp181 EXPECT_FALSE(jsObject->GetJSHClass()->IsDictionaryMode()); in HWTEST_F_L0()
188 EXPECT_TRUE(dictionaryClass->IsDictionaryMode()); in HWTEST_F_L0()
381 EXPECT_TRUE(obj0Class->IsDictionaryMode()); in HWTEST_F_L0()
399 EXPECT_TRUE(newClass->IsDictionaryMode()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.cpp223 if (LIKELY(!hclass->IsDictionaryMode())) { in ITERATE_INTL()
234 ASSERT(array->IsDictionaryMode()); in ITERATE_INTL()
/arkcompiler/ets_runtime/ecmascript/base/
Djson_stringifier.cpp680 if (!elementsArr->IsDictionaryMode()) { in SerializeElements()
729 if (!propertiesArr->IsDictionaryMode()) { in SerializeKeys()
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_manager.cpp182 if (!properties->IsDictionaryMode()) { in GetValueFromExportObject()

12