/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_module_namespace.cpp | 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()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_stack.cpp | 182 PropertyMetaData(false))); in GetProperty() 194 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 205 PropertyMetaData(false))); in GetProperty() 208 return OperationResult(thread, obj->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_deque.cpp | 280 PropertyMetaData(false))); in GetProperty() 292 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 303 PropertyMetaData(false))); in GetProperty() 306 return OperationResult(thread, obj->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_linked_list.cpp | 281 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 292 PropertyMetaData(false))); in GetProperty() 295 return OperationResult(thread, doubleList->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_list.cpp | 288 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 299 PropertyMetaData(false))); in GetProperty() 302 return OperationResult(thread, singleList->Get(index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_queue.cpp | 241 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 252 PropertyMetaData(false))); in GetProperty() 255 return OperationResult(thread, obj->Get(thread, static_cast<uint32_t>(index)), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_plain_array.cpp | 228 PropertyMetaData(false))); in GetProperty() 240 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 253 PropertyMetaData(false))); in GetProperty() 256 return OperationResult(thread, obj->Get(JSTaggedValue(index)), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_arraylist.cpp | 474 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 484 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 487 return OperationResult(thread, obj->Get(thread, index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_vector.cpp | 493 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 496 return OperationResult(thread, JSAPIVector::Get(thread, obj, index), PropertyMetaData(false)); in GetProperty()
|
H A D | js_api_bitvector.cpp | 509 thread, error, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 512 return OperationResult(thread, obj->Get(thread, index), PropertyMetaData(false)); in GetProperty()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_typed_array.cpp | 229 thread, OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 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(thread, JSTaggedValue::Undefined(), PropertyMetaData(true)); in IntegerIndexedElementGet() 438 return OperationResult(thread, result, PropertyMetaData(true)); in IntegerIndexedElementGet() 574 return OperationResult(thread, JSTaggedValue::Undefined(), PropertyMetaData(tru in FastElementGet() [all...] |
H A D | js_object.h | 258 class PropertyMetaData { class 266 explicit PropertyMetaData(uint32_t metaData) : metaData_(metaData) {} in PropertyMetaData() function in panda::ecmascript::PropertyMetaData 268 ~PropertyMetaData() = default; 269 DEFAULT_NOEXCEPT_MOVE_SEMANTIC(PropertyMetaData); 270 DEFAULT_COPY_SEMANTIC(PropertyMetaData); 272 explicit PropertyMetaData(bool isFound) in PropertyMetaData() function in panda::ecmascript::PropertyMetaData 323 OperationResult(const JSThread *thread, JSTaggedValue value, PropertyMetaData metaData) in OperationResult() 348 const PropertyMetaData &GetPropertyMetaData() const in GetPropertyMetaData() 356 PropertyMetaData metaData_ {0U};
|
H A D | js_proxy.cpp | 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(thread, resultHandle.GetTaggedValue(), PropertyMetaData(true)); in GetProperty()
|
H A D | js_tagged_value.cpp | 955 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 983 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 1012 OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false))); in GetProperty() 1753 return OperationResult(thread, JSTaggedValue::Exception(), PropertyMetaData(false)); in GetJSAPIProperty()
|
H A D | js_object.cpp | 1093 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty() 1103 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty() 1115 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty() 1123 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty() 1131 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetPropertyFromGlobal()
|
/arkcompiler/ets_runtime/ecmascript/shared_objects/ |
H A D | js_shared_array.cpp | 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()
|