Home
last modified time | relevance | path

Searched refs:GetPropType (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dmethod_type_infer.h119 GlobalTSTypeRef GetPropType(const GateType type, const JSTaggedValue propertyName) const;
120 GlobalTSTypeRef GetPropType(const GateType type, const uint64_t key) const;
Dmethod_type_infer.cpp638 auto type = GetPropType(inValueType, key); in InferLdObjByIndex()
792 auto type = GetPropType(objType, name); in GetObjPropWithName()
899 auto type = GetPropType(objType, value); in InferLdObjByValue()
1179 GlobalTSTypeRef MethodTypeInfer::GetPropType(const GateType type, const JSTaggedValue propertyName)… in GetPropType() function in panda::ecmascript::kungfu::MethodTypeInfer
1182 GlobalTSTypeRef propGT = tsManager_->GetPropType(objGT, propertyName); in GetPropType()
1189 GlobalTSTypeRef MethodTypeInfer::GetPropType(const GateType type, const uint64_t key) const in GetPropType() function in panda::ecmascript::kungfu::MethodTypeInfer
1192 GlobalTSTypeRef propGT = tsManager_->GetPropType(objGT, key); in GetPropType()
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.h220 …inline GlobalTSTypeRef PUBLIC_API GetPropType(GlobalTSTypeRef gt, JSTaggedValue propertyName) const in GetPropType() function
222 return GetPropType(gt, JSHandle<JSTaggedValue>(thread_, propertyName)); in GetPropType()
225 GlobalTSTypeRef PUBLIC_API GetPropType(GlobalTSTypeRef gt, const uint64_t key) const;
893 …GlobalTSTypeRef PUBLIC_API GetPropType(GlobalTSTypeRef gt, JSHandle<JSTaggedValue> propertyName) c…
Dts_manager.cpp230 GlobalTSTypeRef TSManager::GetPropType(GlobalTSTypeRef gt, JSHandle<JSTaggedValue> propertyName) co… in GetPropType() function in panda::ecmascript::TSManager
335 GlobalTSTypeRef TSManager::GetPropType(GlobalTSTypeRef gt, const uint64_t key) const in GetPropType() function in panda::ecmascript::TSManager
344 return GetPropType(gt, propertyName); in GetPropType()