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

12 3 4 5

  /external/skia/legacy/include/views/
SkOSWindow_iOS.h 15 SkOSWindow(void* hwnd);
SkOSWindow_Win.h 17 SkOSWindow(void* hwnd);
36 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
37 static bool QuitOnDeactivate(HWND hWnd);
  /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/libpng/contrib/visupng/
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/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
WindowRegionIsSetToClipRect.cpp 63 HWND hwnd = reinterpret_cast<HWND>(window->window); local
66 if (::GetWindowRgnBox(hwnd, &regionRect) == ERROR) {
86 if (!::GetClassNameW(hwnd, className, _countof(className))) {
  /external/chromium/chrome/browser/bookmarks/
bookmark_drop_info.h 24 BookmarkDropInfo(gfx::NativeWindow hwnd, int top_margin);
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.h 46 HWND handle() const { return wnd_; }
48 bool Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle,
65 static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam,
68 HWND wnd_;
  /external/skia/include/views/
SkOSWindow_Mac.h 16 SkOSWindow(void* hwnd);
  /external/chromium/base/win/
wrapped_window_proc_unittest.cc 15 LRESULT CALLBACK TestWindowProc(HWND hwnd, UINT message,
19 return DefWindowProc(hwnd, message, wparam, lparam);
66 HWND window = CreateWindow(class_name.c_str(), 0, 0, 0, 0, 0, 0, HWND_MESSAGE,
  /external/chromium/chrome/browser/ui/views/
dropdown_bar_host_win.cc 19 HWND hwnd = contents->GetContentNativeView(); local
22 return NativeWebKeyboardEvent(hwnd, key_event.native_event().message, key, 0);
unhandled_keyboard_event_handler.cc 63 DefWindowProc(event.os_event.hwnd, event.os_event.message,
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view_host.cc 73 // Create the HWND.
74 HWND hwnd = view_win->Create(parent_native_view_); local
76 native_host_->Attach(hwnd);
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
dsetup.h 52 int WINAPI DirectXSetup( HWND hwnd, LPSTR root_path, DWORD flags );
53 int WINAPI DirectXDeviceDriverSetup( HWND hwnd, LPSTR driver_class, LPSTR inf_path, LPSTR driver_path, DWORD flags );
57 typedef int (WINAPI * LPDIRECTXSETUP)( HWND, LPSTR, DWORD );
58 typedef int (WINAPI * LPDIRECTXDEVICEDRIVERSETUP)( HWND, LPSTR, LPSTR, LPSTR, DWORD );
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DSETUP.H 52 int WINAPI DirectXSetup( HWND hwnd, LPSTR root_path, DWORD flags );
53 int WINAPI DirectXDeviceDriverSetup( HWND hwnd, LPSTR driver_class, LPSTR inf_path, LPSTR driver_path, DWORD flags );
57 typedef int (WINAPI * LPDIRECTXSETUP)( HWND, LPSTR, DWORD );
58 typedef int (WINAPI * LPDIRECTXDEVICEDRIVERSETUP)( HWND, LPSTR, LPSTR, LPSTR, DWORD );
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeWindowsSubWindow.cpp 19 LRESULT CALLBACK myWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
21 return DefWindowProc(hwnd, uMsg, wParam, lParam);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 27 DisplayInfo():dc(NULL),hwnd(NULL),isPixelFormatSet(false){};
28 DisplayInfo(HDC hdc,HWND wnd):isPixelFormatSet(false){dc = hdc; hwnd = wnd;};
30 HWND hwnd; member in struct:DisplayInfo
68 if((*it).second.hwnd){
69 DestroyWindow((*it).second.hwnd);
103 explicit SrfcInfo(HWND wnd);
106 HWND getHwnd(){ return m_hwnd;};
112 HWND m_hwnd
197 HWND hwnd = CreateWindowEx(WS_EX_CLIENTEDGE, local
215 HWND hwnd = createDummyWindow(); local
232 HWND hwnd = createDummyWindow(); local
241 HWND hwnd = createDummyWindow(); local
    [all...]
  /external/skia/legacy/src/xml/
SkJS.cpp 161 SkJS::SkJS(void* hwnd) : SkOSWindow(hwnd) {
206 void SkJS::Test(void* hwnd) {
207 SkJS js(hwnd);
  /external/skia/src/xml/
SkJS.cpp 161 SkJS::SkJS(void* hwnd) : SkOSWindow(hwnd) {
206 void SkJS::Test(void* hwnd) {
207 SkJS js(hwnd);
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateFullscreenWindow.h 37 typedef struct HWND__* HWND;
51 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM) = 0;
61 void createWindow(HWND ownerWindow);
63 HWND hwnd() const { return m_hwnd; } function in class:WebCore::MediaPlayerPrivateFullscreenWindow
71 static LRESULT __stdcall staticWndProc(HWND, UINT message, WPARAM, LPARAM);
72 LRESULT wndProc(HWND, UINT message, WPARAM, LPARAM);
79 HWND m_hwnd;
  /external/webkit/Tools/MiniBrowser/win/
main.cpp 52 if (!::GetClassNameW(msg.hwnd, className, ARRAYSIZE(className)))
  /external/chromium/chrome/common/
win_safe_util.cc 24 bool SaferOpenItemViaShell(HWND hwnd, const std::wstring& window_title,
78 hr = attachment_services->Prompt(hwnd, ATTACHMENT_PROMPT_EXEC, &action);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_lowvideo.h 88 extern HWND SDL_Window;
103 extern void (*WIN_PaletteChanged)(_THIS, HWND window);
109 extern LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
137 extern void DX5_SoundFocus(HWND window);
141 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/quake/quake/src/QW/scitech/include/
mglwin.h 32 typedef HWND MGL_HWND;
64 void MGLAPI MGL_registerFullScreenWindow(HWND hwndFullScreen);
88 void MGLAPI MGL_setMainWindow(MGL_HWND hwnd);
100 MGLDC * MGLAPI MGL_createWindowedDC(MGL_HWND hwnd);
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGLWIN.H 32 typedef HWND MGL_HWND;
64 void MGLAPI MGL_registerFullScreenWindow(HWND hwndFullScreen);
88 void MGLAPI MGL_setMainWindow(MGL_HWND hwnd);
100 MGLDC * MGLAPI MGL_createWindowedDC(MGL_HWND hwnd);
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
ResizeViewWhileHidden.cpp 66 static void CALLBACK timerCallback(HWND hwnd, UINT, UINT_PTR timerID, DWORD)
68 ::KillTimer(hwnd, timerID);
95 HWND window = WKViewGetWindow(webView.platformView());

Completed in 1715 milliseconds

12 3 4 5