/external/skia/include/views/ |
SkApplication.h | 22 extern SkOSWindow* create_sk_window(void* hwnd);
|
/external/webkit/Source/WebKit2/Shared/win/ |
NativeWebKeyboardEventWin.cpp | 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) 34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam)) 37 m_nativeEvent.hwnd = hwnd;
|
NativeWebMouseEventWin.cpp | 33 NativeWebMouseEvent::NativeWebMouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView) 34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(hwnd, message, wParam, lParam, didActivateWebView)) 37 m_nativeEvent.hwnd = hwnd;
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/ |
GetValueNetscapeWindow.cpp | 32 // NPN_GetValue(NPNVnetscapeWindow) should return a valid HWND. 49 HWND hwnd; local 50 NPError error = NPN_GetValue(NPNVnetscapeWindow, &hwnd); 56 if (!::IsWindow(hwnd)) { 61 if (hwnd == window->window) {
|
WindowGeometryInitializedBeforeSetWindow.cpp | 32 // Plugin's HWND should be sized/positioned before NPP_SetWindow is called. 54 HWND hwnd = reinterpret_cast<HWND>(window->window); local 56 if (!::GetClientRect(hwnd, &rect)) { 62 pluginLog(instance, "Plugin's HWND has not been sized when NPP_SetWindow is called"); 66 HWND parent = ::GetParent(hwnd); 73 if (!::MapWindowPoints(hwnd, parent, reinterpret_cast<POINT*>(&rect), 2)) { 79 pluginLog(instance, "HWND's rect and NPWindow's rect are not equal") [all...] |
WindowRegionIsSetToClipRect.cpp | 63 HWND hwnd = reinterpret_cast<HWND>(window->window); local 66 if (::GetWindowRgnBox(hwnd, ®ionRect) == ERROR) { 86 if (!::GetClassNameW(hwnd, className, _countof(className))) {
|
/external/webkit/Source/WebCore/platform/win/ |
WindowMessageBroadcaster.cpp | 36 typedef HashMap<HWND, WindowMessageBroadcaster*> InstanceMap; 44 void WindowMessageBroadcaster::addListener(HWND hwnd, WindowMessageListener* listener) 46 WindowMessageBroadcaster* broadcaster = instancesMap().get(hwnd); 48 broadcaster = new WindowMessageBroadcaster(hwnd); 49 instancesMap().add(hwnd, broadcaster); 55 void WindowMessageBroadcaster::removeListener(HWND hwnd, WindowMessageListener* listener) 57 WindowMessageBroadcaster* broadcaster = instancesMap().get(hwnd); 64 WindowMessageBroadcaster::WindowMessageBroadcaster(HWND hwnd [all...] |
/external/chromium/chrome/browser/automation/ |
testing_automation_provider_win.cc | 26 HWND hwnd = window_tracker_->GetResource(handle); local 27 if (hwnd) { 30 GetWindowPlacement(hwnd, &window_placement); 40 HWND window = browser->window()->GetNativeHandle(); 49 HWND hwnd = window_tracker_->GetResource(handle); local 50 if (hwnd) { 53 GetWindowPlacement(hwnd, &window_placement); 63 HWND hwnd = window_tracker_->GetResource(handle) local 75 HWND hwnd = window_tracker_->GetResource(handle); local [all...] |
/external/icu4c/samples/layout/ |
clayout.c | 36 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 42 void PrettyTitle(HWND hwnd, char *fileName) 48 SetWindowTextA(hwnd, title); 51 void InitParagraph(HWND hwnd, Context *context) 67 SetScrollInfo(hwnd, SB_VERT, &si, TRUE); 73 HWND hwnd; local 98 hwnd = CreateWindow(szAppName, NULL [all...] |
layout.cpp | 35 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 41 void PrettyTitle(HWND hwnd, char *fileName) 47 SetWindowTextA(hwnd, title); 50 void InitParagraph(HWND hwnd, Context *context) 66 SetScrollInfo(hwnd, SB_VERT, &si, TRUE); 72 HWND hwnd; local 97 hwnd = CreateWindow(szAppName, NULL [all...] |
/external/chromium/chrome/browser/ui/views/status_icons/ |
status_tray_win.h | 19 LRESULT CALLBACK WndProc(HWND hwnd, 29 static LRESULT CALLBACK WndProcStatic(HWND hwnd, 38 HWND window_;
|
status_tray_win.cc | 40 LRESULT CALLBACK StatusTrayWin::WndProcStatic(HWND hwnd, 45 GetWindowLongPtr(hwnd, GWLP_USERDATA)); 47 return msg_wnd->WndProc(hwnd, message, wparam, lparam); 49 return ::DefWindowProc(hwnd, message, wparam, lparam); 52 LRESULT CALLBACK StatusTrayWin::WndProc(HWND hwnd, 85 return ::DefWindowProc(hwnd, message, wparam, lparam);
|
/external/qemu/distrib/sdl-1.2.12/src/video/windib/ |
SDL_dibevents_c.h | 30 DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
/external/openssl/apps/ |
winrand.c | 66 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 73 HWND hwnd; local 99 hwnd = CreateWindow(appname, OPENSSL_VERSION_TEXT, 103 ShowWindow(hwnd, iCmdShow); 104 UpdateWindow(hwnd); 116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) 126 hdc = BeginPaint(hwnd, &ps); 127 GetClientRect(hwnd, &rect) [all...] |
/external/chromium/chrome/browser/ui/tabs/ |
dock_info_win.cc | 26 explicit BaseWindowFinder(const std::set<HWND>& ignore) : ignore_(ignore) {} 31 virtual bool ShouldStopIterating(HWND window) = 0; 33 static BOOL CALLBACK WindowCallbackProc(HWND hwnd, LPARAM lParam) { 35 if (finder->ignore_.find(hwnd) != finder->ignore_.end()) 38 return finder->ShouldStopIterating(hwnd) ? FALSE : TRUE; 42 const std::set<HWND>& ignore_; 55 static bool IsTopMostWindowAtPoint(HWND window, 57 const std::set<HWND>& ignore) { 62 virtual bool ShouldStopIterating(HWND hwnd) [all...] |
/external/libpng/contrib/visupng/ |
PngFile.h | 16 void PngFileInitialize (HWND hwnd) ; 17 BOOL PngFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 18 BOOL PngFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ;
|
VisualPng.c | 40 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); 41 BOOL CALLBACK AboutDlgProc (HWND, UINT, WPARAM, LPARAM) ; 43 BOOL CenterAbout (HWND hwndChild, HWND hwndParent); 51 BOOL LoadImageFile(HWND hwnd, PTSTR pstrPathName, 55 BOOL DisplayImage (HWND hwnd, BYTE **ppDib, 81 HWND hwnd; local [all...] |
/external/chromium/base/win/ |
wrapped_window_proc.h | 40 // LRESULT CALLBACK MyWinProc(HWND hwnd, UINT message, 56 LRESULT CALLBACK WrappedWindowProc(HWND hwnd, UINT message, 60 rv = proc(hwnd, message, wparam, lparam);
|
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
SDL_dx5events_c.h | 30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
/external/skia/include/xml/ |
SkJS.h | 33 SkJS(void* hwnd); 38 static void Test(void* hwnd);
|
/external/chromium/chrome/common/ |
win_safe_util.h | 25 // The 'hwnd' is the handle to the parent window. In case a dialog is displayed 40 bool SaferOpenItemViaShell(HWND hwnd, const std::wstring& window_title,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
win32window.cc | 49 bool Win32Window::Create(HWND parent, const wchar_t* title, DWORD style, 103 LRESULT Win32Window::WndProc(HWND hwnd, UINT uMsg, 106 ::GetWindowLongPtr(hwnd, GWL_USERDATA)); 110 that->wnd_ = hwnd; 111 ::SetWindowLongPtr(hwnd, GWL_USERDATA, reinterpret_cast<LONG_PTR>(that)); 117 for (HWND child = ::GetWindow(hwnd, GW_CHILD); child; 123 ::SetWindowLongPtr(hwnd, GWL_USERDATA, NULL); 131 return ::DefWindowProc(hwnd, uMsg, wParam, lParam) [all...] |
/external/chromium/chrome/browser/ |
process_singleton.h | 133 LRESULT OnCopyData(HWND hwnd, const COPYDATASTRUCT* cds); 135 LRESULT CALLBACK WndProc(HWND hwnd, 140 static LRESULT CALLBACK WndProcStatic(HWND hwnd, 145 GetWindowLongPtr(hwnd, GWLP_USERDATA)); 146 return msg_wnd->WndProc(hwnd, message, wparam, lparam); 149 HWND remote_window_; // The HWND_MESSAGE of another browser. 150 HWND window_; // The HWND_MESSAGE window [all...] |
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/ |
WindowedPluginTest.cpp | 41 HWND newWindow = reinterpret_cast<HWND>(window->window); 61 LRESULT WindowedPluginTest::staticWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) 63 WindowedPluginTest* instance = reinterpret_cast<WindowedPluginTest*>(::GetPropW(hwnd, instancePointerProperty)); 70 return ::CallWindowProcW(instance->m_originalWndProc, hwnd, message, wParam, lParam);
|
/external/bluetooth/glib/tests/ |
gio-test.c | 255 msg.hwnd, msg.message, msg.wParam, msg.lParam); 261 window_procedure (HWND hwnd, 267 hwnd, message, wparam, lparam); 268 return DefWindowProc (hwnd, message, wparam, lparam); 291 HWND hwnd; local 318 hwnd = CreateWindow (MAKEINTATOM(klass), "gio-test", 0, 0, 0, 10, 10, 320 if (!hwnd) 326 windows_messages_channel = g_io_channel_win32_new_messages ((guint)hwnd); 391 HWND hwnd; local [all...] |