HomeSort by relevance Sort by last modified time
    Searched refs:window_handle (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/ui/base/ime/win/
imm32_manager.h 95 // * window_handle [in] (HWND)
97 void CreateImeWindow(HWND window_handle);
101 // * window_handle [in] (HWND)
118 LRESULT SetImeWindowStyle(HWND window_handle, UINT message,
123 // * window_handle [in] (HWND)
125 void DestroyImeWindow(HWND window_handle);
129 // * window_handle [in] (HWND)
131 void UpdateImeWindow(HWND window_handle);
136 // * window_handle [in] (HWND)
138 void CleanupComposition(HWND window_handle);
    [all...]
tsf_input_scope.h 32 HWND window_handle,
imm32_manager.cc 158 void IMM32Manager::CreateImeWindow(HWND window_handle) {
172 if (::CreateCaret(window_handle, NULL, 1, 1)) {
178 UpdateImeWindow(window_handle);
181 LRESULT IMM32Manager::SetImeWindowStyle(HWND window_handle, UINT message,
194 return ::DefWindowProc(window_handle, message, wparam, lparam);
197 void IMM32Manager::DestroyImeWindow(HWND window_handle) {
205 void IMM32Manager::MoveImeWindow(HWND window_handle, HIMC imm_context) {
209 // So this event should be ignored when the |window_handle| no longer has the
211 if (GetFocus() != window_handle)
268 void IMM32Manager::UpdateImeWindow(HWND window_handle) {
    [all...]
tsf_input_scope.cc 94 typedef HRESULT (WINAPI *SetInputScopesFunc)(HWND window_handle,
181 HWND window_handle,
193 set_input_scopes(window_handle, input_scopes,
  /external/chromium_org/ui/snapshot/
snapshot_win.cc 18 gfx::Rect GetWindowBounds(HWND window_handle) {
20 if (window_handle) {
21 ::GetWindowRect(window_handle, &content_rect);
42 bool GrabHwndSnapshot(HWND window_handle,
45 DCHECK(snapshot_bounds.right() <= GetWindowBounds(window_handle).right());
46 DCHECK(snapshot_bounds.bottom() <= GetWindowBounds(window_handle).bottom());
49 HDC window_hdc = GetWindowDC(window_handle);
83 if (snapshot_bounds.origin() == gfx::Point() && print_window && window_handle)
84 (*print_window)(window_handle, mem_hdc, 0);
98 ReleaseDC(window_handle, window_hdc)
    [all...]
snapshot_win.h 25 HWND window_handle,
snapshot_gtk.cc 78 bool GrabWindowSnapshot(gfx::NativeWindow window_handle,
81 return GrabViewSnapshot(GTK_WIDGET(window_handle), png_representation,
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_win.cc 16 gfx::Rect GrabWindowSnapshot(gfx::NativeWindow window_handle,
19 HDC window_hdc = GetWindowDC(window_handle);
24 ::GetWindowRect(window_handle, &content_rect);
57 (*print_window)(window_handle, mem_hdc, 0);
69 ReleaseDC(window_handle, window_hdc);
  /external/chromium_org/ui/base/ime/
input_method_imm32.h 43 LRESULT OnImeSetContext(HWND window_handle,
48 LRESULT OnImeStartComposition(HWND window_handle,
53 LRESULT OnImeComposition(HWND window_handle,
58 LRESULT OnImeEndComposition(HWND window_handle,
input_method_imm32.cc 156 LRESULT InputMethodIMM32::OnImeSetContext(HWND window_handle,
163 imm32_manager_.CreateImeWindow(window_handle);
167 window_handle, message, wparam, lparam, handled);
170 LRESULT InputMethodIMM32::OnImeStartComposition(HWND window_handle,
181 composing_window_handle_ = window_handle;
182 imm32_manager_.CreateImeWindow(window_handle);
183 imm32_manager_.ResetComposition(window_handle);
187 LRESULT InputMethodIMM32::OnImeComposition(HWND window_handle,
197 imm32_manager_.UpdateImeWindow(window_handle);
202 if (imm32_manager_.GetResult(window_handle, lparam, &composition.text))
    [all...]
input_method_win.h 44 LRESULT OnChar(HWND window_handle,
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosvideo.h 50 unsigned int window_handle; member in struct:SDL_PrivateVideoData
SDL_wimpvideo.c 260 if (this->hidden->window_handle) WIMP_DeleteWindow(this);
298 this->hidden->window_handle = window_data[0] = regs.r[0];
304 WIMP_SetFocus(this->hidden->window_handle);
311 return this->hidden->window_handle;
319 regs.r[1] = (unsigned int)&(this->hidden->window_handle);
321 this->hidden->window_handle = 0;
332 update_block[0] = this->hidden->window_handle;
396 if (block[0] == (int)this->hidden->window_handle)
402 regs.r[0] = this->hidden->window_handle;
417 regs.r[0] = this->hidden->window_handle;
    [all...]
  /external/chromium_org/remoting/host/setup/
daemon_installer_win.h 28 static scoped_ptr<DaemonInstallerWin> Create(HWND window_handle,
daemon_controller.h 136 virtual void SetWindow(void* window_handle) = 0;
  /external/chromium_org/content/test/plugin/
plugin_javascript_open_popup.cc 66 HWND window_handle = reinterpret_cast<HWND>(window->window); local
68 if (IsWindow(window_handle)) {
69 HWND parent_window = GetParent(window_handle);
plugin_npobject_lifetime_test.cc 28 HWND window_handle = reinterpret_cast<HWND>(pNPWindow->window);
29 if (!::GetProp(window_handle, L"Plugin_Instance")) {
31 ::SetProp(window_handle, L"Plugin_Instance", this);
35 timer_id_ = SetTimer(window_handle, kNPObjectLifetimeTimer,
130 HWND window_handle = reinterpret_cast<HWND>(np_window->window);
137 timer_id_ = SetTimer(window_handle, kNPObjectLifetimeTimer,
plugin_get_javascript_url_test.cc 50 HWND window_handle = reinterpret_cast<HWND>(pNPWindow->window); local
51 if (!::GetProp(window_handle, L"Plugin_Instance")) {
53 ::SetProp(window_handle, L"Plugin_Instance", this);
57 SetTimer(window_handle, kNPNEvaluateTimerID, kNPNEvaluateTimerElapse,
60 window_ = window_handle;
  /external/chromium_org/chrome_frame/infobars/internal/
host_window_manager.cc 61 HWND* window_handle = reinterpret_cast<HWND*>(lparam); local
63 if (hwnd == *window_handle)
72 *window_handle = hwnd;
  /external/chromium_org/base/win/
text_services_message_filter.h 27 HWND window_handle,
text_services_message_filter.cc 40 HWND window_handle,
45 if (FAILED(message_pump_->PeekMessage(msg, window_handle,
  /external/chromium_org/base/message_loop/
message_pump_win.h 139 HWND window_handle,
143 return PeekMessage(msg, window_handle, msg_filter_min, msg_filter_max,
178 static LRESULT CALLBACK WndProcThunk(HWND window_handle,
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_win_browsertest.cc 36 virtual void SetTextInputMode(HWND window_handle,
39 window_handle_ = window_handle;
49 HWND window_handle() const { return window_handle_; } function in class:content::__anon10186::MockIMM32Manager
94 EXPECT_EQ(view_->m_hWnd, mock->window_handle());
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.h 110 int AddWindowSurface(const EGLSurface& surface, WindowHandle* window_handle);
129 int FindSurfaceIdForWindow(const WindowHandle* window_handle);
  /external/chromium_org/chrome/test/automation/
browser_proxy.cc 242 int window_handle = 0; local
245 &window_handle));
250 static_cast<WindowProxy*>(tracker_->GetResource(window_handle));
252 window = new WindowProxy(sender_, tracker_, window_handle);

Completed in 1644 milliseconds

1 2 3