HomeSort by relevance Sort by last modified time
    Searched refs:hwnd (Results 76 - 100 of 112) sorted by null

1 2 34 5

  /external/chromium/base/
message_pump_win.h 179 HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam);
190 HWND message_hwnd_;
  /external/libpng/contrib/gregbook/
rpng-win.c 111 LRESULT CALLBACK rpng_win_wndproc(HWND, UINT, WPARAM, LPARAM);
135 static HWND global_hwnd;
644 LRESULT CALLBACK rpng_win_wndproc(HWND hwnd, UINT iMsg, WPARAM wP, LPARAM lP)
656 hdc = BeginPaint(hwnd, &ps);
664 EndPaint(hwnd, &ps);
683 return DefWindowProc(hwnd, iMsg, wP, lP);
rpng2-win.c 148 LRESULT CALLBACK rpng2_win_wndproc(HWND, UINT, WPARAM, LPARAM);
240 static HWND global_hwnd;
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 22 Surface::Surface(Display *display, const Config *config, HWND window)
181 HWND Surface::getWindowHandle()
315 static LRESULT CALLBACK SurfaceWindowProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) {
317 Surface* surf = reinterpret_cast<Surface*>(GetProp(hwnd, kSurfaceProperty));
322 WNDPROC prevWndFunc = reinterpret_cast<WNDPROC >(GetProp(hwnd, kParentWndProc));
323 return CallWindowProc(prevWndFunc, hwnd, message, wparam, lparam);
350 // hwnd as well and did not unsubclass before destroying its EGL context. The
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 91 HWND frontendHwnd = ::CreateWindowEx(0, kWebInspectorWindowClassName, 0, WS_OVERLAPPEDWINDOW,
156 HWND frontendWebViewHwnd;
207 WebInspectorFrontendClient::WebInspectorFrontendClient(WebView* inspectedWebView, HWND inspectedWebViewHwnd, HWND frontendHwnd, const COMPtr<WebView>& frontendWebView, HWND frontendWebViewHwnd, WebInspectorClient* inspectorClient, PassOwnPtr<Settings> settings)
294 HWND hostWindow;
355 HWND hostWindow;
393 HWND hostWindow;
484 static LRESULT CALLBACK WebInspectorWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
    [all...]
  /external/webkit/Source/WebKit/wince/
WebView.cpp 59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
61 if (WebView* webView = reinterpret_cast<WebView*>(GetWindowLong(hWnd, 0)))
62 return webView->wndProc(hWnd, message, wParam, lParam);
64 return DefWindowProc(hWnd, message, wParam, lParam);
74 WebView::WebView(HWND hwnd, unsigned features)
77 , m_parentWindowHandle(hwnd)
81 GetClientRect(hwnd, &rcClient);
84 CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, hwnd, 0, WebCore::instanceHandle(), 0)
    [all...]
  /external/webkit/Tools/MiniBrowser/win/
BrowserWindow.cpp 46 LRESULT CALLBACK BrowserWindow::BrowserWindowWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
67 LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
222 HWND webViewWindow = WKViewGetWindow(m_browserView.webView());
235 if (message->hwnd != m_comboBoxWindow && !::IsChild(m_comboBoxWindow, message->hwnd))
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 65 static void translatePoint(LPARAM& lParam, HWND from, HWND to)
74 LRESULT CALLBACK WebPopupMenuProxyWin::WebPopupMenuProxyWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
76 LONG_PTR longPtr = ::GetWindowLongPtr(hWnd, 0);
79 return popupMenuProxy->wndProc(hWnd, message, wParam, lParam);
85 ::SetWindowLongPtr(hWnd, 0, (LONG_PTR)createStruct->lpCreateParams);
89 return ::DefWindowProc(hWnd, message, wParam, lParam);
92 LRESULT WebPopupMenuProxyWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam
    [all...]
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 42 static inline LPARAM relativeCursorPosition(HWND hwnd)
46 ::ScreenToClient(hwnd, &point);
327 WebMouseEvent WebEventFactory::createWebMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView)
352 lParam = relativeCursorPosition(hWnd);
388 ::ClientToScreen(hWnd, &globalPosition);
398 WebWheelEvent WebEventFactory::createWebWheelEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
405 ::ScreenToClient(hWnd, &position)
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
glass_browser_frame_view.cc 179 HWND hwnd = frame_->GetWindow()->GetNativeWindow(); local
180 if (!browser_view_->IsTabStripVisible() && hwnd) {
186 AdjustWindowRectEx(&rect, GetWindowLong(hwnd, GWL_STYLE), FALSE,
187 GetWindowLong(hwnd, GWL_EXSTYLE));
  /external/chromium/chrome/browser/ui/views/
html_dialog_view.cc 193 DefWindowProc(event.os_event.hwnd, event.os_event.message,
  /external/qemu/audio/
dsoundaudio.c 437 HWND hwnd; local
439 hwnd = GetForegroundWindow ();
442 hwnd,
448 hwnd);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.cc 91 BOOL CALLBACK DismissOwnedPopups(HWND window, LPARAM arg) {
92 const HWND toplevel_hwnd = reinterpret_cast<HWND>(arg);
95 const HWND owner = ::GetWindow(window, GW_OWNER);
106 NotifyPluginProcessHostTask(HWND window, HWND parent)
139 // leak the HWND.
143 HWND window_; // Plugin HWND, created and destroyed in the plugin process.
144 HWND parent_; // Parent HWND, created and destroyed on the browser UI thread
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
FrameLoadDelegate.cpp 218 static void CALLBACK processWorkTimer(HWND hwnd, UINT, UINT_PTR id, DWORD)
221 ::KillTimer(hwnd, id);
EventSender.cpp 111 static MSG makeMsg(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
114 result.hwnd = hwnd;
551 msg.hwnd = webViewWindow;
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5events.c 71 static HWND GetTopLevelParent(HWND hWnd)
73 HWND hParentWnd;
76 hParentWnd = GetParent(hWnd);
79 hWnd = hParentWnd;
81 return hWnd;
163 HWND topwnd;
554 LRESULT DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 81 static void translatePoint(LPARAM& lParam, HWND from, HWND to)
134 HWND hostWindow = view->hostWindow()->platformPageClient();
194 HWND activeWindow;
200 if (msg.hwnd == m_popup) {
202 msg.hwnd = hostWindow;
221 msg.hwnd = m_popup;
236 translatePoint(msg.lParam, msg.hwnd, m_popup);
238 msg.hwnd = m_popup;
250 msg.hwnd = m_popup
    [all...]
ScrollbarThemeWin.cpp 70 SOFT_LINK(uxtheme, OpenThemeData, HANDLE, WINAPI, (HWND hwnd, LPCWSTR pszClassList), (hwnd, pszClassList))
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 277 HWND parentHwnd = webView ? webView->viewWindow() : 0;
290 GetClientRect(m_fullscreenWindow->hwnd(), &windowRect);
379 LRESULT FullscreenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
444 InvalidateRect(m_fullscreenWindow->hwnd(), &clearRect, true);
457 m_hudPosition.x(), m_hudPosition.y(), 0, 0, m_fullscreenWindow->hwnd(), 0, gInstance, 0);
559 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 68 BOOL CALLBACK EnumThreadWndProc(HWND hwnd, LPARAM l_param) {
69 if (hwnd == reinterpret_cast<HWND>(l_param)) {
183 HWND top_level_hwnd =
184 reinterpret_cast<HWND>(browser->window()->GetNativeHandle());
  /external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
SDL_dx5audio.c 236 static HWND mainwin = NULL;
238 void DX5_SoundFocus(HWND hwnd)
240 mainwin = hwnd;
426 static int CreatePrimary(LPDIRECTSOUND sndObj, HWND focus,
501 static int CreateSecondary(LPDIRECTSOUND sndObj, HWND focus,
  /external/chromium/chrome/browser/
external_tab_container_win.cc 116 HWND parent,
267 NativeWebKeyboardEvent keyboard_event(msg.hwnd, msg.message, msg.wParam,
288 bool ExternalTabContainer::IsExternalTabContainer(HWND window) {
294 HWND tab_window) {
295 HWND parent_window = ::GetParent(tab_window);
526 return hwnd();
668 ProcessUnhandledKeyStroke(event.os_event.hwnd, event.os_event.message,
814 void ExternalTabContainer::OnFinalMessage(HWND window) {
846 bool ExternalTabContainer::ProcessUnhandledKeyStroke(HWND window,
864 msg.hwnd = window
    [all...]
  /external/qemu/android/camera/
camera-capture-windows.c 59 HWND cap_window;
210 _on_captured_frame(HWND hwnd, LPVIDEOHDR hdr)
213 WndCameraDevice* wcd = (WndCameraDevice*)capGetUserData(hwnd);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.h 69 HWND hwnd,
279 void OnContextMenu(HWND window, const CPoint& point);
286 void OnKillFocus(HWND focus_wnd);
293 LRESULT OnMouseActivate(HWND window, UINT hit_test, UINT mouse_message);
301 void OnSetFocus(HWND focus_wnd);
  /external/skia/src/gpu/gl/
GrGpuGL.cpp 1596 HWND hwnd = GetTopWindow(GetDesktopWindow()); local
    [all...]

Completed in 1919 milliseconds

1 2 34 5