Lines Matching defs:GetProperty

1086 OperationResult JSObject::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
1093 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound()));
1096 OperationResult JSObject::GetProperty(JSThread *thread, const JSHandle<JSObject> &obj,
1103 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound()));
1106 OperationResult JSObject::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
1112 return JSSharedArray::GetProperty(thread, obj, key, sCheckMode);
1115 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound()));
1118 OperationResult JSObject::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, uint32_t index)
1123 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound()));
1131 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound()));
1152 JSTaggedValue JSObject::GetProperty(JSThread *thread, ObjectOperator *op)
1163 return JSProxy::GetProperty(thread, JSHandle<JSProxy>::Cast(holder), key, receiver)
1167 return JSProxy::GetProperty(thread, JSHandle<JSProxy>::Cast(holder), op->GetKey(), receiver)
1795 JSHandle<JSTaggedValue> func = JSTaggedValue::GetProperty(thread, obj, key).GetValue();
2034 OperationResult opResult = JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(obj), key);
2107 JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(obj), key);
2284 auto value = JSObject::Cast(obj->GetTaggedObject())->GetProperty(hclass, attr);
2459 JSHandle<JSTaggedValue> objConstructor(JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>(obj),
2481 JSHandle<JSTaggedValue> speciesConstructor = GetProperty(thread, objConstructor, speciesSymbol).GetValue();