Home
last modified time | relevance | path

Searched refs:GetPropertyInlinedProps (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_object-inl.h285 auto value = GetPropertyInlinedProps(hclass, index); in GetPropertyInlinedPropsWithRep()
294 JSTaggedValue JSObject::GetPropertyInlinedProps(uint32_t index) const in GetPropertyInlinedProps() function
296 return GetPropertyInlinedProps(GetJSHClass(), index); in GetPropertyInlinedProps()
311 JSTaggedValue JSObject::GetPropertyInlinedProps(const JSHClass *hclass, uint32_t index) const in GetPropertyInlinedProps() function
Djs_object.h707 inline JSTaggedValue GetPropertyInlinedProps(uint32_t index) const;
708 inline JSTaggedValue GetPropertyInlinedProps(const JSHClass *hclass, uint32_t index) const;
Dobject_factory.cpp467 cloneObject->SetPropertyInlinedPropsWithRep(thread_, i, object->GetPropertyInlinedProps(i)); in CloneObjectLiteral()
529 cloneObject->SetPropertyInlinedPropsWithRep(thread_, i, object->GetPropertyInlinedProps(i)); in CloneArrayLiteral()
586 JSTaggedValue value = object->GetPropertyInlinedProps(i); in CloneObjectLiteral()
606 JSTaggedValue length = func->GetPropertyInlinedProps(JSFunction::LENGTH_INLINE_PROPERTY_INDEX); in CloneJSFuction()
618 JSTaggedValue length = func->GetPropertyInlinedProps(JSFunction::LENGTH_INLINE_PROPERTY_INDEX); in CloneSFunction()
643 JSTaggedValue value = ctor->GetPropertyInlinedProps(i); in CloneClassCtor()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_function_stub_builder.cpp88 … GateRef result = GetPropertyInlinedProps(arrayObj, hClass, PropertyInlinedPropsOffset); in Apply()
142 … GateRef result = GetPropertyInlinedProps(arrayObj, hClass, PropertyInlinedPropsOffset); in BuildArgumentsListFastElements()
Dbuiltins_object_stub_builder.cpp875 value = GetPropertyInlinedProps(object, hclass, index); in IsUninitializedProperty()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_function.cpp74 auto result = argList->GetPropertyInlinedProps(JSArguments::LENGTH_INLINE_PROPERTY_INDEX); in BuildArgumentsListFast()
198 lengthProperty = obj->GetPropertyInlinedProps(JSFunction::LENGTH_INLINE_PROPERTY_INDEX); in FunctionPrototypeBind()
252 nameProperty = obj->GetPropertyInlinedProps(JSFunction::NAME_INLINE_PROPERTY_INDEX); in FunctionPrototypeBind()
Dbuiltins_regexp.cpp233 …auto execVal = JSObject::Cast(proto)->GetPropertyInlinedProps(JSRegExp::EXEC_INLINE_PROPERTY_INDEX… in IsFastRegExp()
2082 JSTaggedValue lastIndexValue = object->GetPropertyInlinedProps(LAST_INDEX_OFFSET); in RegExpExecForTestFast()
/arkcompiler/ets_runtime/ecmascript/tests/
Dobject_operator_second_test.cpp277 EXPECT_EQ(handleObject->GetPropertyInlinedProps(objectOperator.GetIndex()).GetInt(), 3); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_first_tests.cpp1292 …JSHandle<JSFunction>(clsObj)->GetPropertyInlinedProps(JSFunction::CLASS_PROTOTYPE_INLINE_PROPERTY_… in HWTEST_F_L0()
1295 …accessor = JSHandle<JSFunction>(clsObj)->GetPropertyInlinedProps(JSFunction::LENGTH_INLINE_PROPERT… in HWTEST_F_L0()
Djsnapi_second_tests.cpp462 …JSHandle<JSFunction>(obj)->GetPropertyInlinedProps(JSFunction::CLASS_PROTOTYPE_INLINE_PROPERTY_IND… in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h461 GateRef GetPropertyInlinedProps(GateRef obj, GateRef hClass,
Dtyped_bytecode_lowering.cpp1913 JSTaggedValue value = objhandle->GetPropertyInlinedProps(i); in LowerCreateObjectWithBuffer()
Dstub_builder-inl.h1928 inline GateRef StubBuilder::GetPropertyInlinedProps(GateRef obj, GateRef hClass, in GetPropertyInlinedProps() function
Dstub_builder.cpp526 result = GetPropertyInlinedProps(obj, hclass, attrOffset); in JSObjectGetProperty()