Lines Matching refs:pRuntime
30 CJS_Runtime* pRuntime,
74 CJS_Runtime* pRuntime = pObj->GetRuntime(); in JSPropGetter() local
75 if (!pRuntime) in JSPropGetter()
78 CJS_Result result = (pObj.Get()->*M)(pRuntime); in JSPropGetter()
80 pRuntime->Error(JSFormatErrorString(class_name_string, prop_name_string, in JSPropGetter()
99 CJS_Runtime* pRuntime = pObj->GetRuntime(); in JSPropSetter() local
100 if (!pRuntime) in JSPropSetter()
103 CJS_Result result = (pObj.Get()->*M)(pRuntime, value); in JSPropSetter()
105 pRuntime->Error(JSFormatErrorString(class_name_string, prop_name_string, in JSPropSetter()
120 CJS_Runtime* pRuntime = pObj->GetRuntime(); in JSMethod() local
121 if (!pRuntime) in JSMethod()
128 CJS_Result result = (pObj.Get()->*M)(pRuntime, parameters); in JSMethod()
130 pRuntime->Error(JSFormatErrorString(class_name_string, method_name_string, in JSMethod()