/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_typed_array_test.cpp | 343 CVector<OperationResult> cVecOpResult = {}; in HWTEST_F_L0() 347 OperationResult opResult = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 356 OperationResult opResult1 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 358 OperationResult opResult2 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 360 OperationResult opResult3 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 362 OperationResult opResult4 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 401 OperationResult opResult1 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 405 OperationResult opResult2 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 409 OperationResult opResult3 = JSTypedArray::IntegerIndexedElementGet(thread, handleTagValInt8Array, in HWTEST_F_L0() 413 OperationResult opResult in HWTEST_F_L0() [all...] |
H A D | js_api_stack_test.cpp | 204 OperationResult getPropertyRes = JSAPIStack::GetProperty(thread, toor, key); in HWTEST_F_L0() 210 OperationResult getPropertyRes = JSAPIStack::GetProperty(thread, toor, key); in HWTEST_F_L0() 215 OperationResult getPropertyRes1 = JSAPIStack::GetProperty(thread, toor, key1); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_typed_array.h | 56 static inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetProperty() 61 static inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetProperty() 66 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, 86 static OperationResult IntegerIndexedElementGet(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, 88 static OperationResult FastElementGet(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, uint32_t index);
|
H A D | js_arguments.h | 42 static inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSObject> &obj, in GetProperty() 47 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSArguments> &args,
|
H A D | js_typed_array.cpp | 216 OperationResult JSTypedArray::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetProperty() 229 thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 379 OperationResult JSTypedArray::IntegerIndexedElementGet(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in IntegerIndexedElementGet() 393 return OperationResult(thread, JSTaggedValue::Undefined(), PropertyMetaData(true)); in IntegerIndexedElementGet() 396 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in IntegerIndexedElementGet() 400 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in IntegerIndexedElementGet() 404 return OperationResult(thread, JSTaggedValue::Undefined(), PropertyMetaData(true)); in IntegerIndexedElementGet() 413 thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in IntegerIndexedElementGet() 418 return OperationResult(thread, JSTaggedValue::Undefined(), PropertyMetaData(true)); in IntegerIndexedElementGet() 423 return OperationResult(threa in IntegerIndexedElementGet() [all...] |
H A D | js_proxy.h | 48 static inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, in GetProperty() 53 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSProxy> &proxy,
|
H A D | js_object.h | 321 class OperationResult { class 323 OperationResult(const JSThread *thread, JSTaggedValue value, PropertyMetaData metaData) in OperationResult() function in panda::ecmascript::OperationResult 330 ~OperationResult() = default; 331 DEFAULT_NOEXCEPT_MOVE_SEMANTIC(OperationResult); 332 DEFAULT_COPY_SEMANTIC(OperationResult); 533 static OperationResult PUBLIC_API GetProperty(JSThread *thread, const JSHandle<JSObject> &obj, 536 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, 539 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, 542 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, uint32_t index); 544 static OperationResult GetPropertyFromGloba [all...] |
H A D | js_proxy.cpp | 517 OperationResult JSProxy::GetProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, in GetProperty() 520 STACK_LIMIT_CHECK(thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 528 OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 536 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 547 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 554 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 561 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 572 OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 583 OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty() 588 return OperationResult(threa in GetProperty() [all...] |
H A D | js_arguments.cpp | 55 OperationResult JSArguments::GetProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetProperty()
|
H A D | js_tagged_value.h | 34 class OperationResult; 425 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, 428 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, uint32_t key); 429 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, 742 static OperationResult GetJSAPIProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
|
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_module_namespace.cpp | 79 OperationResult ModuleNamespace::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in GetProperty() 94 return OperationResult(thread, thread->GlobalConstants()->GetUndefined(), PropertyMetaData(false)); in GetProperty() 98 return OperationResult(thread, thread->GlobalConstants()->GetUndefined(), PropertyMetaData(false)); in GetProperty() 100 return OperationResult(thread, thread->GlobalConstants()->GetUndefined(), PropertyMetaData(false)); in GetProperty() 108 thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 134 thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 155 thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 170 return OperationResult(thread, result, PropertyMetaData(true)); in GetProperty()
|
H A D | js_module_namespace.h | 49 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_stack.cpp | 174 OperationResult JSAPIStack::GetProperty(JSThread *thread, const JSHandle<JSAPIStack> &obj, in GetProperty() 180 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 194 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 203 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 208 return OperationResult(thread, obj->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_deque.cpp | 272 OperationResult JSAPIDeque::GetProperty(JSThread *thread, const JSHandle<JSAPIDeque> &obj, in GetProperty() 278 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 292 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 301 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 306 return OperationResult(thread, obj->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_linked_list.cpp | 266 OperationResult JSAPILinkedList::GetProperty(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in GetProperty() 281 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 290 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 295 return OperationResult(thread, doubleList->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_list.cpp | 273 OperationResult JSAPIList::GetProperty(JSThread *thread, const JSHandle<JSAPIList> &list, in GetProperty() 288 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 297 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 302 return OperationResult(thread, singleList->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_queue.cpp | 227 OperationResult JSAPIQueue::GetProperty(JSThread *thread, const JSHandle<JSAPIQueue> &obj, in GetProperty() 241 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 250 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 255 return OperationResult(thread, obj->Get(thread, static_cast<uint32_t>(index)), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_stack.h | 40 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSAPIStack> &obj,
|
H A D | js_api_plain_array.cpp | 219 OperationResult JSAPIPlainArray::GetProperty(JSThread *thread, const JSHandle<JSAPIPlainArray> &obj, in GetProperty() 226 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 240 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 251 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, OperationResult(thread, in GetProperty() 256 return OperationResult(thread, obj->Get(JSTaggedValue(index)), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_deque.h | 55 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSAPIDeque> &obj,
|
H A D | js_api_linked_list.h | 44 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSAPILinkedList> &list,
|
H A D | js_api_list.h | 74 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSAPIList> &list,
|
H A D | js_api_queue.h | 44 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSAPIQueue> &obj,
|
H A D | js_api_arraylist.h | 75 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSAPIArrayList> &obj,
|
/arkcompiler/ets_runtime/ecmascript/shared_objects/ |
H A D | js_shared_array.cpp | 405 OperationResult JSSharedArray::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in GetProperty() 412 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 417 return OperationResult(thread, JSTaggedValue::Undefined(), PropertyMetaData(false)); in GetProperty() 419 return OperationResult(thread, JSObject::GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty()
|