Lines Matching refs:pObj
72 auto pObj = JSGetObject<C>(info.GetIsolate(), info.Holder()); in JSPropGetter() local
73 if (!pObj) in JSPropGetter()
76 CJS_Runtime* pRuntime = pObj->GetRuntime(); in JSPropGetter()
80 CJS_Result result = (pObj.get()->*M)(pRuntime); in JSPropGetter()
97 auto pObj = JSGetObject<C>(info.GetIsolate(), info.Holder()); in JSPropSetter() local
98 if (!pObj) in JSPropSetter()
101 CJS_Runtime* pRuntime = pObj->GetRuntime(); in JSPropSetter()
105 CJS_Result result = (pObj.get()->*M)(pRuntime, value); in JSPropSetter()
118 auto pObj = JSGetObject<C>(info.GetIsolate(), info.Holder()); in JSMethod() local
119 if (!pObj) in JSMethod()
122 CJS_Runtime* pRuntime = pObj->GetRuntime(); in JSMethod()
130 CJS_Result result = (pObj.get()->*M)(pRuntime, parameters); in JSMethod()