Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_hclass-inl.h45 uint32_t last = cachedHClass->NumberOfProps() - 1; in AddTransitions()
77 uint32_t last = cachedHClass->NumberOfProps() - 1; in AddProtoTransitions()
101 int last = static_cast<int>(cachedHClass->NumberOfProps()) - 1; in FindTransitions()
234 SetNumberOfProps(jshclass->NumberOfProps()); in Copy()
241 uint32_t propsNumber = hclass->NumberOfProps(); in FindPropertyEntry()
Dsubtyping_operator-inl.h31 return objLayout->FindElementWithCache(thread, obj, key, obj->NumberOfProps()); in GetElementByKey()
58 int index = objLayout->FindElementWithCache(thread, obj, key, obj->NumberOfProps()); in IsLegalElement()
Dvtable.cpp38 uint32_t propsNumber = phcPoint->NumberOfProps(); in CreateTuple()
Djs_hclass.h1555 ASSERT(NumberOfProps() < PropertyAttributes::MAX_CAPACITY_OF_PROPERTIES); in IncNumberOfProps()
1556 SetNumberOfProps(NumberOfProps() + 1); in IncNumberOfProps()
1559 inline uint32_t NumberOfProps() const in NumberOfProps() function
1568 uint32_t numberOfProps = NumberOfProps(); in GetNextInlinedPropsIndex()
1578 uint32_t numberOfProps = NumberOfProps(); in GetNextNonInlinedPropsIndex()
Djs_object.cpp150 uint32_t propNumber = jshclass->NumberOfProps(); in TransitionToDictionary()
322 int end = static_cast<int>(obj->GetJSHClass()->NumberOfProps()); in GetAllKeys()
346 uint32_t numberOfProps = obj->GetJSHClass()->NumberOfProps(); in GetAllKeysByFilter()
370 int end = static_cast<int>(obj->GetJSHClass()->NumberOfProps()); in GetAllKeys()
401 int end = static_cast<int>(jsHclass->NumberOfProps()); in GetAllEnumKeys()
425 int end = static_cast<int>(jsHclass->NumberOfProps()); in GetAllEnumKeys()
593 return GetJSHClass()->NumberOfProps(); in GetNumberOfKeys()
1864 uint32_t propsNumber = hclass->NumberOfProps(); in ToPropertyDescriptorFast()
Dsubtyping_operator.cpp152 uint32_t propNumber = phcHandle->NumberOfProps(); in GenVTable()
Djs_hclass.cpp801 int element = static_cast<int>(hclass->NumberOfProps()); in DumpForProfile()
Ddump.cpp589 os << "| NumberOfProps :" << std::dec << jshclass->NumberOfProps(); in DumpHClass()
1448 int propNumber = static_cast<int>(jshclass->NumberOfProps()); in Dump()
3602 int propNumber = static_cast<int>(jshclass->NumberOfProps()); in Dump()
4378 int propNumber = static_cast<int>(jshclass->NumberOfProps()); in DumpForSnapshot()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_hclass_test.cpp145 EXPECT_TRUE(objectClass->NumberOfProps() == cloneClass->NumberOfProps()); in HWTEST_F_L0()
156 EXPECT_TRUE(objectClass->NumberOfProps() == cloneClass->NumberOfProps()); in HWTEST_F_L0()
380 EXPECT_EQ(obj0Class->NumberOfProps(), 0U); in HWTEST_F_L0()
398 EXPECT_EQ(newClass->NumberOfProps(), 0U); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_class_analysis.cpp109 for (uint32_t index = 0; index < hclass->NumberOfProps(); ++index) { in AnalyzeProperties()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.cpp225 uint32_t propsNumber = hclass->NumberOfProps(); in ITERATE_INTL()
/arkcompiler/ets_runtime/ecmascript/base/
Djson_stringifier.cpp763 int end = static_cast<int>(jsHclass->NumberOfProps()); in SerializeKeys()