Home
last modified time | relevance | path

Searched refs:GetInlinedProperties (Results 1 – 9 of 9) sorted by relevance

/ark/js_runtime/ecmascript/
Djs_object-inl.h233 return array->Get(attr.GetOffset() - hclass->GetInlinedProperties()); in GetProperty()
242 array->Set(thread, attr.GetOffset() - hclass->GetInlinedProperties(), value); in SetProperty()
Djs_hclass.h1022 uint32_t inlinedProperties = GetInlinedProperties(); in GetNextInlinedPropsIndex()
1032 uint32_t inlinedProperties = GetInlinedProperties(); in GetNextNonInlinedPropsIndex()
1056 ASSERT(index < GetInlinedProperties()); in GetInlinedPropertiesOffset()
1062 ASSERT(index < GetInlinedProperties()); in GetInlinedPropertiesIndex()
1080 inline uint32_t GetInlinedProperties() const in GetInlinedProperties() function
Djs_hclass.cpp153 uint32_t numInlinedProps = withoutInlinedProperties ? 0 : jshclass->GetInlinedProperties(); in Clone()
309 ASSERT(newJshclass->GetInlinedProperties() == 0); in TransitionToDictionary()
Dobject_operator.cpp332 entry -= jshclass->GetInlinedProperties(); in LookupPropertyInlinedProps()
682 attr.GetOffset() - obj->GetJSHClass()->GetInlinedProperties(); in AddPropertyInternal()
Dobject_factory.cpp311 for (uint32_t i = 0; i < klass->GetInlinedProperties(); i++) { in CloneObjectLiteral()
333 for (uint32_t i = 0; i < klass->GetInlinedProperties(); i++) { in CloneArrayLiteral()
390 for (uint32_t i = 0; i < klass->GetInlinedProperties(); i++) { in CloneObjectLiteral()
440 for (uint32_t i = 0; i < hclass->GetInlinedProperties(); i++) { in CloneClassCtor()
470 … JSObject::Cast(NewNonMovableDynObject(jshclass, jshclass->GetInlinedProperties()))); in NewNonMovableJSObject()
853 uint32_t inobjPropCount = dynclass->GetInlinedProperties(); in NewDynObject()
Ddump.cpp360 os << "| InlinedProperties :" << std::dec << jshclass->GetInlinedProperties(); in DumpHClass()
936 val = properties->Get(i - jshclass->GetInlinedProperties()); in Dump()
2835 val = properties->Get(i - jshclass->GetInlinedProperties()); in DumpForSnapshot()
Djs_object.cpp112 uint32_t numberInlinedProps = jshclass->GetInlinedProperties(); in TransitionToDictionary()
/ark/js_runtime/ecmascript/base/
Djson_stringifier.cpp713 : propertiesArr->Get(index - jsHclass->GetInlinedProperties()); in SerializeKeys()
740 : propertiesArr->Get(index - jsHclass->GetInlinedProperties()); in SerializeKeys()
/ark/js_runtime/ecmascript/interpreter/
Dfast_runtime_stub-inl.h293 attr.SetOffset(nonInlinedProps + objHandle->GetJSHClass()->GetInlinedProperties()); in AddPropertyByName()
1226 *indexOrEntry -= cls->GetInlinedProperties(); in FindOwnProperty()
1296 : array->Get(entry - cls->GetInlinedProperties()); in FindOwnProperty()