/arkcompiler/ets_runtime/ecmascript/ic/ |
H A D | ic_runtime.h | 95 JSHandle<JSTaggedValue> value, bool isOwn = false);
|
H A D | ic_runtime.cpp | 343 JSHandle<JSTaggedValue> value, bool isOwn) in StoreMiss() 395 ObjectOperator op(GetThread(), receiver, key, isOwn ? OperatorType::OWN : OperatorType::PROTOTYPE_CHAIN); in StoreMiss() 405 if (isOwn) { in StoreMiss() 342 StoreMiss(JSHandle<JSTaggedValue> receiver, JSHandle<JSTaggedValue> key, JSHandle<JSTaggedValue> value, bool isOwn) StoreMiss() argument
|
H A D | ic_runtime_stub.h | 90 ICKind kind, bool isOwn = false);
|
H A D | ic_runtime_stub-inl.h | 670 JSTaggedValue key, JSTaggedValue value, uint32_t slotId, ICKind kind, bool isOwn) in StoreMiss() 678 return icRuntime.StoreMiss(receiverHandle, keyHandle, valueHandle, isOwn); in StoreMiss() 669 StoreMiss(JSThread *thread, ProfileTypeInfo *profileTypeInfo, JSTaggedValue receiver, JSTaggedValue key, JSTaggedValue value, uint32_t slotId, ICKind kind, bool isOwn) StoreMiss() argument
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | runtime_impl.cpp | 182 bool isOwn = params.GetOwnProperties(); in GetProperties() local 267 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 271 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 275 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 279 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 283 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 287 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 326 GetProtoOrProtoType(value, isOwn, isAccessorOnly, outPropertyDesc); in GetProperties() 411 void RuntimeImpl::GetProtoOrProtoType(Local<JSValueRef> value, bool isOwn, bool isAccessorOnly, in GetProtoOrProtoType() argument 414 if (!isAccessorOnly && isOwn) { in GetProtoOrProtoType() [all...] |
H A D | runtime_impl.h | 87 void GetProtoOrProtoType(Local<JSValueRef> value, bool isOwn, bool isAccessorOnly,
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_types_test.cpp | 823 // abnormal params of params.sub-key=["name":"name8","configurable":true,"enumerable":true,"isOwn":98] 825 "name":"name85","configurable":true,"enumerable":true,"isOwn":98}})"; 829 // abnormal params of params.sub-key=["name":"name8","configurable":true,"enumerable":true,"isOwn":[true]] 831 "name":"name85","configurable":true,"enumerable":true,"isOwn":[true]}})"; 835 // normal params of params.sub-key=["name":"name8","configurable":true,"enumerable":true,"isOwn":true] 837 "name":"name85","configurable":true,"enumerable":true,"isOwn":true}})"; 886 R"("},"configurable":true,"enumerable":true,"wasThrown":true,"isOwn":true,"symbol":{"type":")" + 942 ret = objJson->GetBool("isOwn", &tmpBool);
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.h | 1024 PropertyDescriptor &SetIsOwn(bool isOwn) in SetIsOwn() argument 1026 isOwn_ = isOwn; in SetIsOwn()
|
H A D | pt_types.cpp | 1458 bool isOwn = false; in Create() local 1459 ret = params.GetBool("isOwn", &isOwn); in Create() 1461 propertyDescriptor->isOwn_ = isOwn; in Create() 1463 error += "Wrong type of 'isOwn';"; in Create() 1513 result->Add("isOwn", isOwn_.value()); in ToJson()
|