Lines Matching refs:lpThisValue
43 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in V8FunctionCallback_Wrapper() local
44 lpThisValue->ForceSetValue(info.Holder()); in V8FunctionCallback_Wrapper()
47 lpFunctionInfo->callbackProc(lpThisValue.get(), szFunctionName, impl); in V8FunctionCallback_Wrapper()
205 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in NamedPropertyQueryCallback() local
206 lpThisValue->ForceSetValue(thisObject); in NamedPropertyQueryCallback()
207 if (DynPropQueryAdapter(lpClass, lpThisValue.get(), szFxPropName)) { in NamedPropertyQueryCallback()
226 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in NamedPropertyGetterCallback() local
227 lpThisValue->ForceSetValue(thisObject); in NamedPropertyGetterCallback()
229 DynPropGetterAdapter(lpClass, lpThisValue.get(), szFxPropName, in NamedPropertyGetterCallback()
246 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in NamedPropertySetterCallback() local
247 lpThisValue->ForceSetValue(thisObject); in NamedPropertySetterCallback()
250 DynPropSetterAdapter(lpClass, lpThisValue.get(), szFxPropName, in NamedPropertySetterCallback()