Lines Matching refs:lpThisValue
30 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in V8FunctionCallback_Wrapper() local
31 lpThisValue->ForceSetValue(info.Holder()); in V8FunctionCallback_Wrapper()
34 lpFunctionInfo->callbackProc(lpThisValue.get(), szFunctionName, impl); in V8FunctionCallback_Wrapper()
173 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in NamedPropertyQueryCallback() local
174 lpThisValue->ForceSetValue(thisObject); in NamedPropertyQueryCallback()
175 if (DynPropQueryAdapter(lpClass, lpThisValue.get(), szFxPropName)) { in NamedPropertyQueryCallback()
191 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in NamedPropertyGetterCallback() local
192 lpThisValue->ForceSetValue(thisObject); in NamedPropertyGetterCallback()
194 DynPropGetterAdapter(lpClass, lpThisValue.get(), szFxPropName, in NamedPropertyGetterCallback()
208 auto lpThisValue = pdfium::MakeUnique<CFXJSE_Value>(info.GetIsolate()); in NamedPropertySetterCallback() local
209 lpThisValue->ForceSetValue(thisObject); in NamedPropertySetterCallback()
213 DynPropSetterAdapter(lpClass, lpThisValue.get(), szFxPropName, in NamedPropertySetterCallback()