/external/chromium_org/third_party/WebKit/ManualTests/ |
directory-drop-on-view.html | 8 This tests that unknown file types are handled correctly when dropped in the window
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-additional-deps.py | 8 Make sure additional library dependencies are handled.
|
gyptest-link-additional-options.py | 8 Make sure additional options are handled.
|
/external/clang/test/Sema/ |
statements.c | 59 switch (X) { // expected-warning {{enumeration value 'g' not handled in switch}} 69 switch (X) { // expected-warning {{enumeration values 'f' and 'g' not handled in switch}} 78 switch (X) { // expected-warning {{enumeration values 'e', 'f', and 'g' not handled in switch}} 86 switch (X) { // expected-warning {{5 enumeration values not handled in switch: 'c', 'd', 'e'...}}
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
fork.cc | 1 // Test that thread local data is handled correctly after forking without exec().
|
/external/llvm/test/CodeGen/SystemZ/ |
atomic-load-03.ll | 5 ; This is just a placeholder to make sure that loads are handled.
|
atomic-load-04.ll | 5 ; This is just a placeholder to make sure that loads are handled.
|
atomic-store-01.ll | 5 ; This is just a placeholder to make sure that stores are handled.
|
atomic-store-02.ll | 5 ; This is just a placeholder to make sure that stores are handled.
|
atomic-store-03.ll | 5 ; This is just a placeholder to make sure that stores are handled.
|
atomic-store-04.ll | 5 ; This is just a placeholder to make sure that stores are handled.
|
/external/valgrind/main/gdbserver_tests/ |
nlpasssigalrm.vgtest | 2 # are properly handled.
|
/frameworks/base/core/java/android/text/method/ |
BaseMovementMethod.java | 42 boolean handled = handleMovementKey(widget, text, keyCode, movementMetaState, event); 43 if (handled) { 47 return handled; 57 boolean handled = false; 62 handled = true; 64 if (handled) { 68 return handled; 107 boolean handled = false; 109 handled |= scrollLeft(widget, text, (int)Math.ceil(-hscroll)); 111 handled |= scrollRight(widget, text, (int)Math.ceil(hscroll)) [all...] |
ArrowKeyMovementMethod.java | 113 boolean handled = false; 124 handled = true; 129 return handled; 137 boolean handled = false; 148 handled = true; 153 return handled; 235 boolean handled = Touch.onTouchEvent(widget, buffer, event); 251 if (isSelecting(buffer) && handled) { 253 // handled will be true, if we're in select mode AND we're 292 return handled; [all...] |
/packages/apps/UnifiedEmail/unified_src/ |
README | 9 AccountCacheProvider. All subsequent uris will actually be handled by the appropriate application.
|
/external/chromium/chrome/browser/debugger/manual_tests/ |
event-listeners.html | 8 event.target.textContent = "event handled"; 11 event.target.textContent = "event handled";
|
/external/chromium/chrome/browser/ui/gtk/ |
info_bubble_accelerators_gtk.h | 26 // accelerators that are handled by the root browser window, but the 27 // specific accelerators to be handled has not yet been fully specified. The
|
/external/chromium_org/chrome_frame/ |
find_dialog.h | 33 LPARAM lparam, BOOL& handled); // NOLINT 39 LPARAM lparam, BOOL& handled); // NOLINT
|
/external/chromium_org/content/browser/renderer_host/input/ |
touchpad_tap_suppression_controller_aura.cc | 54 // Mouse downs are not handled by gesture event filter; so, they are 60 // Mouse downs are not handled by gesture event filter; so, they are
|
/external/chromium_org/ui/views/widget/ |
child_window_message_processor.h | 34 // if the message was handled with a valid result in |result|. Returns false 35 // if the message was not 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.
|
/frameworks/base/core/java/android/view/animation/ |
package.html | 11 Tweened animation is handled by this package (android.view.animation); frame-by-frame animation is 12 handled by the {@link android.graphics.drawable.AnimationDrawable} class.
|
/external/valgrind/main/memcheck/tests/x86-linux/ |
scalar.c | 36 // __NR_restart_syscall 0 // XXX: not yet handled, perhaps should be... 38 //SY(__NR_restart_syscall); // (Not yet handled by Valgrind) FAIL; 111 //SY(__NR_lchown); // (Not yet handled by Valgrind) FAIL; 119 // (obsolete, not handled by Valgrind) 147 //SY(__NR_stime); // (Not yet handled by Valgrind) FAIL; 160 // (obsolete, not handled by Valgrind) 240 //SY(__NR_signal); // (Not yet handled by Valgrind) FAIL; 299 // (obsolete, not handled by Valgrind) 311 // (deprecated, not handled by Valgrind) 335 //SY(__NR_sgetmask); // (Not yet handled by Valgrind) FAIL [all...] |
/frameworks/base/core/java/android/view/ |
InputEventSender.java | 107 * @param handled True if the input event was handled. 109 public void onInputEventFinished(int seq, boolean handled) { 140 private void dispatchInputEventFinished(int seq, boolean handled) { 141 onInputEventFinished(seq, handled);
|
/external/chromium_org/ui/base/ime/ |
input_method_win.cc | 43 BOOL handled; local 45 native_key_event.wParam, native_key_event.lParam, &handled); 46 return !!handled; // Don't send WM_CHAR for post event processing. 114 BOOL* handled) { 115 *handled = FALSE; 126 *handled = TRUE; 129 *handled = TRUE; 132 *handled = TRUE; 143 BOOL* handled) { 144 *handled = TRUE [all...] |