Searched refs:GetPropType (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/ |
D | method_type_infer.h | 119 GlobalTSTypeRef GetPropType(const GateType type, const JSTaggedValue propertyName) const; 120 GlobalTSTypeRef GetPropType(const GateType type, const uint64_t key) const;
|
D | method_type_infer.cpp | 638 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/ |
D | ts_manager.h | 220 …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…
|
D | ts_manager.cpp | 230 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()
|