Lines Matching refs:extention
962 const std::string& script, napi_env env, napi_ref jsCallback, bool extention)
983 auto callbackImpl = std::make_shared<WebviewJavaScriptExecuteCallback>(env, jsCallback, nullptr, extention);
984 nweb_ptr->ExecuteJavaScript(script, callbackImpl, extention);
988 napi_deferred deferred, bool extention)
1002 auto callbackImpl = std::make_shared<WebviewJavaScriptExecuteCallback>(env, nullptr, deferred, extention);
1003 nweb_ptr->ExecuteJavaScript(script, callbackImpl, extention);
1007 const int fd, const size_t scriptLength, napi_env env, napi_ref jsCallback, bool extention)
1030 auto callbackImpl = std::make_shared<WebviewJavaScriptExecuteCallback>(env, jsCallback, nullptr, extention);
1031 nweb_ptr->ExecuteJavaScriptExt(fd, scriptLength, callbackImpl, extention);
1035 const int fd, const size_t scriptLength, napi_env env, napi_deferred deferred, bool extention)
1051 auto callbackImpl = std::make_shared<WebviewJavaScriptExecuteCallback>(env, nullptr, deferred, extention);
1052 nweb_ptr->ExecuteJavaScriptExt(fd, scriptLength, callbackImpl, extention);