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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
coolo_sigaction.stdout.exp 0 handled SIGCHLD
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
DrawsGradient.cpp 40 LRESULT onPaint(WPARAM, LPARAM, bool& handled);
41 LRESULT onPrintClient(WPARAM, LPARAM, bool& handled);
43 virtual LRESULT wndProc(UINT message, WPARAM, LPARAM, bool& handled);
53 LRESULT DrawsGradient::wndProc(UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
59 result = onPaint(wParam, lParam, handled);
62 result = onPrintClient(wParam, lParam, handled);
65 handled = false;
71 LRESULT DrawsGradient::onPaint(WPARAM, LPARAM, bool& handled)
81 handled = true;
85 LRESULT DrawsGradient::onPrintClient(WPARAM wParam, LPARAM, bool& handled)
    [all...]
  /external/webkit/Source/WebCore/platform/
PlatformGestureRecognizer.h 53 // be the target of any generated synthetic event. Finally, |handled|
54 // specifies if the |event| was actually handled by |source| (by the JavaScript)
56 virtual bool processTouchEventForGesture(const PlatformTouchEvent&, EventHandler*, bool handled) = 0;
  /external/chromium/chrome/browser/extensions/
extension_message_handler.cc 25 bool handled = true; local
29 IPC_MESSAGE_UNHANDLED(handled = false)
31 return handled;
  /frameworks/base/core/java/android/inputmethodservice/
AbstractInputMethodService.java 136 boolean handled = event.dispatch(AbstractInputMethodService.this,
139 callback.finishedEvent(seq, handled);
149 boolean handled = onTrackballEvent(event);
151 callback.finishedEvent(seq, handled);
161 boolean handled = onGenericMotionEvent(event);
163 callback.finishedEvent(seq, handled);
210 * @return True if the event was handled in this function, false otherwise.
221 * @return True if the event was handled in this function, false otherwise.
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.h 82 LRESULT onMouseActivate(HWND, UINT message, WPARAM, LPARAM, bool& handled);
83 LRESULT onSize(HWND, UINT message, WPARAM, LPARAM, bool& handled);
84 LRESULT onKeyDown(HWND, UINT message, WPARAM, LPARAM, bool& handled);
85 LRESULT onChar(HWND, UINT message, WPARAM, LPARAM, bool& handled);
86 LRESULT onMouseMove(HWND, UINT message, WPARAM, LPARAM, bool& handled);
87 LRESULT onLButtonDown(HWND, UINT message, WPARAM, LPARAM, bool& handled);
88 LRESULT onLButtonUp(HWND, UINT message, WPARAM, LPARAM, bool& handled);
89 LRESULT onMouseWheel(HWND, UINT message, WPARAM, LPARAM, bool& handled);
90 LRESULT onPaint(HWND, UINT message, WPARAM, LPARAM, bool& handled);
91 LRESULT onPrintClient(HWND, UINT message, WPARAM, LPARAM, bool& handled);
    [all...]
WebView.h 97 LRESULT onMouseEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
98 LRESULT onWheelEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
99 LRESULT onHorizontalScroll(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
100 LRESULT onVerticalScroll(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
101 LRESULT onGestureNotify(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
102 LRESULT onGesture(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
103 LRESULT onKeyEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
104 LRESULT onPaintEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
105 LRESULT onPrintClientEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
106 LRESULT onSizeEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
    [all...]
WebInspectorProxyWin.cpp 93 bool handled = true; local
97 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled);
100 lResult = onMinMaxInfoEvent(hWnd, message, wParam, lParam, handled);
103 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, handled);
106 lResult = onCloseEvent(hWnd, message, wParam, lParam, handled);
109 handled = false;
113 if (!handled)
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadItem.java 95 boolean handled = false;
100 handled = true;
112 handled = true;
118 if (handled) {
121 handled = super.onTouchEvent(event);
124 return handled;
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
WindowedPluginTest.h 38 virtual LRESULT wndProc(UINT message, WPARAM, LPARAM, bool& handled) = 0;
WindowedPluginTest.cpp 65 bool handled = false; local
66 LRESULT result = instance->wndProc(message, wParam, lParam, handled);
67 if (handled)
  /external/chromium/chrome/browser/debugger/
devtools_handler.cc 18 bool handled = true; local
29 IPC_MESSAGE_UNHANDLED(handled = false)
31 return handled;
  /external/chromium/chrome/browser/
desktop_notification_handler.cc 26 bool handled = true; local
33 IPC_MESSAGE_UNHANDLED(handled = false)
36 return handled;
spellcheck_message_filter.cc 18 bool handled = true; local
33 IPC_MESSAGE_UNHANDLED(handled = false)
35 return handled;
spellcheck_message_filter_browsertest.cc 52 bool handled = false; local
53 target->OnMessageReceived(to_be_received, &handled);
54 EXPECT_TRUE(handled);
  /external/chromium/chrome/browser/nacl_host/
nacl_broker_host_win.cc 49 bool handled = true; local
52 IPC_MESSAGE_UNHANDLED(handled = false)
54 return handled;
  /external/chromium/chrome/browser/translate/
translate_tab_helper.cc 21 bool handled = true; local
26 IPC_MESSAGE_UNHANDLED(handled = false)
29 return handled;
  /external/chromium/chrome/browser/ui/download/
download_tab_helper.cc 64 bool handled = true; local
67 IPC_MESSAGE_UNHANDLED(handled = false)
70 return handled;
  /frameworks/base/core/java/android/view/
TouchDelegate.java 111 boolean handled = false;
149 handled = delegateView.dispatchTouchEvent(event);
151 return handled;
  /external/webkit/Source/WebKit/wince/
WebView.cpp 295 bool handled = false;
319 handled = m_page->mainFrame()->eventHandler()->handleMousePressEvent(mouseEvent);
323 handled = m_page->mainFrame()->eventHandler()->handleMousePressEvent(mouseEvent);
335 handled = m_page->mainFrame()->eventHandler()->mouseMoved(mouseEvent);
338 return handled;
352 bool handled = frame->eventHandler()->keyEvent(keyEvent);
359 if (handled) {
366 return handled;
393 bool handled = false;
398 handled = handlePaint(hWnd)
    [all...]
  /frameworks/base/core/java/android/widget/
DialerFilter.java 108 boolean handled = false;
122 handled = mDigits.onKeyDown(keyCode, event);
123 handled &= mLetters.onKeyDown(keyCode, event);
127 handled = mLetters.onKeyDown(keyCode, event);
138 handled = mDigits.onKeyDown(keyCode, event);
142 handled = mDigits.onKeyDown(keyCode, event);
146 handled = mLetters.onKeyDown(keyCode, event);
156 handled = mLetters.onKeyDown(keyCode, event);
162 handled = true;
176 handled &= mDigits.onKeyDown(keyCode, event)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
account_creation_view.cc 31 bool handled = true; local
40 IPC_MESSAGE_UNHANDLED(handled = false)
43 if (handled)
  /external/chromium/chrome/browser/importer/
profile_import_process_client.cc 81 bool handled = true; local
112 IPC_MESSAGE_UNHANDLED(handled = false)
114 return handled;
  /external/chromium/chrome/browser/net/
resolve_proxy_msg_helper.cc 23 bool handled = true; local
27 IPC_MESSAGE_UNHANDLED(handled = false)
29 return handled;
  /external/chromium/chrome/browser/printing/
print_preview_message_handler.cc 98 bool handled = true; local
106 IPC_MESSAGE_UNHANDLED(handled = false)
108 return handled;

Completed in 1324 milliseconds

1 2 3 4 5 6 7 8 91011>>