Searched refs:eventInfo (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DInputMethodContextEfl.h51 static void onIMFInputSequenceComplete(void* data, Ecore_IMF_Context*, void* eventInfo);
52 static void onIMFPreeditSequenceChanged(void* data, Ecore_IMF_Context*, void* eventInfo);
H A DInputMethodContextEfl.cpp48 void InputMethodContextEfl::onIMFInputSequenceComplete(void* data, Ecore_IMF_Context*, void* eventInfo) argument
51 if (!eventInfo || !inputMethodContext->m_focused)
54 inputMethodContext->m_view->page()->confirmComposition(String::fromUTF8(static_cast<char*>(eventInfo)));
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/
H A Dtest_ewk2_download_job.cpp99 static void on_download_requested(void* userData, Evas_Object* webview, void* eventInfo) argument
102 Ewk_Download_Job* download = static_cast<Ewk_Download_Job*>(eventInfo);
123 static void on_download_cancelled(void* userData, Evas_Object* webview, void* eventInfo) argument
130 static void on_download_failed(void* userData, Evas_Object* webview, void* eventInfo) argument
132 Ewk_Download_Job_Error* downloadError = static_cast<Ewk_Download_Job_Error*>(eventInfo);
138 static void on_download_finished(void* userData, Evas_Object* webview, void* eventInfo) argument
141 Ewk_Download_Job* download = static_cast<Ewk_Download_Job*>(eventInfo);
H A Dtest_ewk2_file_chooser_request.cpp37 static void onFileChooserRequest(void* userData, Evas_Object*, void* eventInfo) argument
41 Ewk_File_Chooser_Request* request = static_cast<Ewk_File_Chooser_Request*>(eventInfo);
H A Dtest_ewk2_ssl.cpp81 static void onLoadProvisionalFailedFail(void* userData, Evas_Object*, void* eventInfo) argument
85 ASSERT_TRUE(ewk_error_code_get(static_cast<Ewk_Error*>(eventInfo)) == SOUP_STATUS_SSL_FAILED);
98 static void onLoadProvisionalFailedIgnore(void* userData, Evas_Object*, void* eventInfo) argument
101 if (ewk_error_code_get(static_cast<Ewk_Error*>(eventInfo)) == SOUP_STATUS_SSL_FAILED)
H A Dtest_ewk2_auth_request.cpp71 static void onAuthenticationRequest(void* userData, Evas_Object*, void* eventInfo) argument
76 Ewk_Auth_Request* request = static_cast<Ewk_Auth_Request*>(eventInfo);
H A Dtest_ewk2_view.cpp87 static void onFormAboutToBeSubmitted(void* userData, Evas_Object*, void* eventInfo) argument
89 Ewk_Form_Submission_Request* request = static_cast<Ewk_Form_Submission_Request*>(eventInfo);
151 static void onTextFound(void* userData, Evas_Object*, void* eventInfo) argument
154 unsigned* matchCount = static_cast<unsigned*>(eventInfo);
159 static void onVibrate(void* userData, Evas_Object*, void* eventInfo) argument
162 unsigned* vibrationTime = static_cast<unsigned*>(eventInfo);
193 static void onContentsSizeChangedPortrait(void* userData, Evas_Object*, void* eventInfo) argument
196 Ewk_CSS_Size* size = static_cast<Ewk_CSS_Size*>(eventInfo);
201 static void onContentsSizeChangedLandscape(void* userData, Evas_Object*, void* eventInfo) argument
204 Ewk_CSS_Size* size = static_cast<Ewk_CSS_Size*>(eventInfo);
[all...]
H A Dtest_ewk2_cookie_manager.cpp88 static void onCookiesChanged(void *eventInfo) argument
90 bool* cookiesChanged = static_cast<bool*>(eventInfo);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A DEwkView.h227 static void handleMouseDownForTouch(void* data, Evas*, Evas_Object*, void* eventInfo);
228 static void handleMouseUpForTouch(void* data, Evas*, Evas_Object*, void* eventInfo);
229 static void handleMouseMoveForTouch(void* data, Evas*, Evas_Object*, void* eventInfo);
230 static void handleMultiDownForTouch(void* data, Evas*, Evas_Object*, void* eventInfo);
231 static void handleMultiUpForTouch(void* data, Evas*, Evas_Object*, void* eventInfo);
232 static void handleMultiMoveForTouch(void* data, Evas*, Evas_Object*, void* eventInfo);
234 static void handleFaviconChanged(const char* pageURL, void* eventInfo);
H A DEwkView.cpp168 static void handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo);
172 void EwkViewEventHandler<EVAS_CALLBACK_MOUSE_DOWN>::handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo) argument
176 smartData->api->mouse_down(smartData, static_cast<Evas_Event_Mouse_Down*>(eventInfo));
180 void EwkViewEventHandler<EVAS_CALLBACK_MOUSE_UP>::handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo) argument
184 smartData->api->mouse_up(smartData, static_cast<Evas_Event_Mouse_Up*>(eventInfo));
188 void EwkViewEventHandler<EVAS_CALLBACK_MOUSE_MOVE>::handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo) argument
192 smartData->api->mouse_move(smartData, static_cast<Evas_Event_Mouse_Move*>(eventInfo));
212 void EwkViewEventHandler<EVAS_CALLBACK_MOUSE_WHEEL>::handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo) argument
216 smartData->api->mouse_wheel(smartData, static_cast<Evas_Event_Mouse_Wheel*>(eventInfo));
228 void EwkViewEventHandler<EVAS_CALLBACK_KEY_DOWN>::handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo) argument
236 handleEvent(void* data, Evas*, Evas_Object*, void* eventInfo) argument
1327 handleMouseDownForTouch(void*, Evas*, Evas_Object* ewkView, void* eventInfo) argument
1332 handleMouseUpForTouch(void*, Evas*, Evas_Object* ewkView, void* eventInfo) argument
1337 handleMouseMoveForTouch(void*, Evas*, Evas_Object* ewkView, void* eventInfo) argument
1342 handleMultiDownForTouch(void*, Evas*, Evas_Object* ewkView, void* eventInfo) argument
1347 handleMultiUpForTouch(void*, Evas*, Evas_Object* ewkView, void* eventInfo) argument
1352 handleMultiMoveForTouch(void*, Evas*, Evas_Object* ewkView, void* eventInfo) argument
1358 handleFaviconChanged(const char* pageURL, void* eventInfo) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/UnitTestUtils/
H A DEWK2UnitTestBase.cpp161 static void onLoadFinished(void* userData, Evas_Object* webView, void* eventInfo) argument
164 UNUSED_PARAM(eventInfo);

Completed in 216 milliseconds