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

1 2 3

  /external/v8/build/android/gyp/
touch.py 13 build_utils.Touch(f)
create_placeholder_files.py 22 help='Path to touch on success')
28 build_utils.Touch(target_path)
31 build_utils.Touch(options.stamp)
jar.py 38 build_utils.Touch(empty_file)
41 build_utils.Touch(jar_path, fail_if_missing=True)
61 parser.add_option('--stamp', help='Path to touch on success.')
89 build_utils.Touch(options.stamp)
java_google_api_keys_tests.py 50 parser.add_argument("--stamp", help="File to touch on success.")
57 build_utils.Touch(options.stamp)
apk_install.py 76 help='Path to touch on success.')
110 build_utils.Touch(options.install_record)
121 build_utils.Touch(options.stamp)
jar_toc.py 97 build_utils.Touch(toc_path, fail_if_missing=True)
106 parser.add_option('--stamp', help='Path to touch on success.')
123 build_utils.Touch(options.stamp)
create_standalone_apk.py 47 parser.add_option('--stamp', help='Path to touch on success.')
56 build_utils.Touch(options.stamp)
gcc_preprocess.py 41 parser.add_option('--stamp', help='Path to touch on success.')
54 build_utils.Touch(options.stamp)
push_libraries.py 64 parser.add_option('--stamp', help='Path to touch on success.')
80 build_utils.Touch(options.stamp)
emma_instr.py 43 option_parser.add_option('--stamp', help='Path to touch when done.')
98 build_utils.Touch(options.stamp)
180 build_utils.Touch(options.coverage_file)
204 build_utils.Touch(options.stamp)
create_device_library_links.py 96 parser.add_option('--stamp', help='Path to touch on success.')
117 build_utils.Touch(options.stamp)
pack_relocations.py 66 parser.add_option('--stamp', help='Path to touch on success')
108 build_utils.Touch(options.stamp)
write_ordered_libraries.py 107 parser.add_option('--stamp', help='Path to touch on success.')
133 build_utils.Touch(options.stamp)
apk_obfuscate.py 65 parser.add_option('--stamp', help='File to touch on success')
179 build_utils.Touch(f)
182 build_utils.Touch(options.stamp)
copy_ex.py 82 parser.add_option('--stamp', help='Path to touch on success.')
112 build_utils.Touch(options.stamp)
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 26 import android.text.method.Touch;
82 Touch.scrollTo(tv, layout, width - tv.getWidth() - 1, 0);
92 Touch.scrollTo(tv, layout, width + 100, 5);
101 Touch.scrollTo(tv, layout, width - 10, 5);
151 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event1);
159 assertEquals(0, Touch.getInitialScrollX(tv, spannable));
160 assertEquals(0, Touch.getInitialScrollY(tv, spannable));
165 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event2);
173 assertEquals(0, Touch.getInitialScrollX(tv, spannable));
174 assertEquals(0, Touch.getInitialScrollY(tv, spannable))
    [all...]
  /packages/apps/Launcher3/protos/
launcher_log.proto 100 TOUCH = 0;
104 enum Touch {
120 optional Touch touch = 2;
126 // Action (Touch) + Target
127 // Action (Touch) + Target + Target
133 // List of targets that touch actions can be operated on.
  /external/v8/build/
protoc_java.py 35 parser.add_option("--stamp", help="File to touch on success.")
65 build_utils.Touch(options.stamp)
  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 519 Touch.scrollTo(widget, layout, widget.getScrollX(), layout.getLineTop(topLine));
549 Touch.scrollTo(widget, layout, widget.getScrollX(),
570 Touch.scrollTo(widget, layout, widget.getScrollX(), layout.getLineTop(topLine));
591 Touch.scrollTo(widget, layout, widget.getScrollX(),
610 Touch.scrollTo(widget, layout, widget.getScrollX(), layout.getLineTop(0));
629 Touch.scrollTo(widget, layout, widget.getScrollX(),
ArrowKeyMovementMethod.java 231 initialScrollX = Touch.getInitialScrollX(widget, buffer);
232 initialScrollY = Touch.getInitialScrollY(widget, buffer);
236 boolean handled = Touch.onTouchEvent(widget, buffer, event);
242 // For touch events, the code should run only when selection is active.
251 // Disallow intercepting of the touch events, so that
271 // Get the current touch position
ScrollingMovementMethod.java 90 return Touch.onTouchEvent(widget, buffer, event);
Touch.java 28 public class Touch {
29 private Touch() { }
85 * Handles touch events for dragging. You may want to do other actions
86 * like moving the cursor on touch as well.
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtInput.java 35 import com.google.gwt.dom.client.Touch;
464 protected int getRelativeX (Touch touch, CanvasElement target) {
466 return Math.round(xScaleRatio * touch.getRelativeX(target));
469 protected int getRelativeY (Touch touch, CanvasElement target) {
471 return Math.round(yScaleRatio * touch.getRelativeY(target));
616 JsArray<Touch> touches = e.getChangedTouches();
618 Touch touch = touches.get(i); local
637 Touch touch = touches.get(i); local
654 Touch touch = touches.get(i); local
673 Touch touch = touches.get(i); local
    [all...]
  /external/v8/build/android/
findbugs_diff.py 67 '--stamp', help='Path to touch on success.')
113 build_utils.Touch(args.stamp)
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/iphone/
iPhoneInputManager.mm 63 #pragma mark Touch Event Handling
65 for(UITouch *touch in touches) {
66 touchObject->_touchEnded(touch);
71 for(UITouch *touch in touches) {
72 touchObject->_touchMoved(touch);
77 for(UITouch *touch in touches) {
78 touchObject->_touchCancelled(touch);
83 for(UITouch *touch in touches) {
84 touchObject->_touchBegan(touch);
114 // Set flags that we want to accept multiple finger touches and be the only one to receive touch event
    [all...]

Completed in 2117 milliseconds

1 2 3