HomeSort by relevance Sort by last modified time
    Searched refs:wndProc (Results 1 - 10 of 10) sorted by null

  /external/webkit/WebKitTools/WebKitAPITest/
HostWindow.h 44 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
TestsController.h 55 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
HostWindow.cpp 70 wndClass.lpfnWndProc = wndProc;
78 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
TestsController.cpp 128 wndClass.lpfnWndProc = wndProc;
136 LRESULT TestsController::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
  /external/skia/include/views/
SkOSWindow_Win.h 32 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 162 static LRESULT CALLBACK wndProc(HWND wnd, UINT message,
223 wc.lpfnWndProc = (WNDPROC)wndProc;
  /external/webkit/WebCore/platform/
PopupMenu.h 160 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  /external/webkit/WebCore/plugins/
PluginView.h 217 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
218 WNDPROC pluginWndProc() const { return m_pluginWndProc; }
353 WNDPROC m_pluginWndProc;
  /external/webkit/WebCore/platform/win/
PopupMenuWin.cpp 752 return popup->wndProc(hWnd, message, wParam, lParam);
771 LRESULT PopupMenu::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 330 return pluginView->wndProc(hWnd, message, wParam, lParam);
347 PluginView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
825 WNDPROC currentWndProc = (WNDPROC)GetWindowLong(platformPluginWidget(), GWL_WNDPROC);
827 m_pluginWndProc = (WNDPROC)SetWindowLong(platformPluginWidget(), GWL_WNDPROC, (LONG)PluginViewWndProc);
830 WNDPROC currentWndProc = (WNDPROC)GetWindowLongPtr(platformPluginWidget(), GWLP_WNDPROC);
832 m_pluginWndProc = (WNDPROC)SetWindowLongPtr(platformPluginWidget(), GWLP_WNDPROC, (LONG)PluginViewWndProc);
    [all...]

Completed in 63 milliseconds