HomeSort by relevance Sort by last modified time
    Searched defs:touch (Results 26 - 50 of 82) sorted by null

12 3 4

  /frameworks/base/services/java/com/android/server/display/
DisplayDeviceInfo.java 81 * Touch attachment: Display does not receive touch.
86 * Touch attachment: Touch input is via the internal interface.
91 * Touch attachment: Touch input is via an external interface, such as USB.
144 * The touch attachment, per {@link DisplayViewport#touch}.
146 public int touch; field in class:DisplayDeviceInfo
210 && touch == other.touc
    [all...]
  /ndk/sources/host-tools/make-3.81/tests/
test_driver.pl 874 #sub touch
884 # || &error ("Couldn't touch $file: $!\n", 1);
897 sub touch subroutine
903 || &error("Couldn't touch $file: $!\n", 1);
907 # Touch with a time offset. To DTRT, call touch() then use stat() to get the
915 &touch(@_);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursslk.h 186 inline void touch() { function in class:Soft_Label_Key_Set
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursslk.h 186 inline void touch() { function in class:Soft_Label_Key_Set
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursslk.h 186 inline void touch() { function in class:Soft_Label_Key_Set
  /external/jmonkeyengine/engine/src/android/com/jme3/input/android/
AndroidInput.java 169 * Fetches a touch event from the reuse pool
225 TouchEvent touch; local
238 touch = getNextFreeTouchEvent();
239 touch.set(Type.DOWN, event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex), 0, 0);
240 touch.setPointerId(pointerId);
241 touch.setTime(event.getEventTime());
242 touch.setPressure(event.getPressure(pointerIndex));
243 processEvent(touch);
252 touch = getNextFreeTouchEvent();
253 touch.set(Type.UP, event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex), 0, 0);
479 TouchEvent touch = getNextFreeTouchEvent(); local
487 TouchEvent touch = getNextFreeTouchEvent(); local
502 TouchEvent touch = getNextFreeTouchEvent(); local
515 TouchEvent touch = getNextFreeTouchEvent(); local
528 TouchEvent touch = getNextFreeTouchEvent(); local
541 TouchEvent touch = getNextFreeTouchEvent(); local
551 TouchEvent touch = getNextFreeTouchEvent(); local
561 TouchEvent touch = getNextFreeTouchEvent(); local
569 TouchEvent touch = getNextFreeTouchEvent(); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
touch_event_queue.cc 153 // How long to wait on a touch ack before cancelling the touch sequence.
156 // The touch event source for which we expect the next ack.
167 // This class represents a single coalesced touch event. However, it also keeps
168 // track of all the original touch-events that were coalesced into a single
170 // touch-events are sent to the Client (on ACK for the coalesced event) so that
228 // If |ignore_ack_| is true, don't send this touch event to client
254 // There is no touch event in the queue. Forward it to the renderer
261 // If the last queued touch-event was a touch-move, and the current event i
297 const TouchEventWithLatencyInfo& touch = local
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/life/
life.c 134 struct PP_TouchPoint touch = g_pTouchInput->GetTouchByIndex( local
136 int radius = (int)touch.radius.x;
137 int x = (int)touch.position.x;
138 int y = (int)touch.position.y;
139 /* num = 1/100th the area of touch point */
144 /* only plot random cells within the touch area */
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/life/
life.c 138 struct PP_TouchPoint touch = g_pTouchInput->GetTouchByIndex( local
140 int radius = (int)touch.radius.x;
141 int x = (int)touch.position.x;
142 int y = (int)touch.position.y;
143 /* num = 1/100th the area of touch point */
148 /* only plot random cells within the touch area */
  /frameworks/base/core/tests/coretests/src/android/os/
FileUtilsTest.java 121 touch("file1", HOUR_IN_MILLIS);
122 touch("file2", 1 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
123 touch("file3", 2 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
124 touch("file4", 3 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
125 touch("file5", 4 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
131 touch("file1", -HOUR_IN_MILLIS);
132 touch("file2", HOUR_IN_MILLIS);
133 touch("file3", WEEK_IN_MILLIS);
137 touch("file1", -HOUR_IN_MILLIS);
138 touch("file2", HOUR_IN_MILLIS)
164 private void touch(String name, long age) throws Exception { method in class:FileUtilsTest
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchManyTest.java 17 package android.widget.listview.touch;
31 * Touch tests for a list where all of the items do not fit on the screen.
63 assertEquals("Selection still available after touch", -1,
81 assertEquals("Selection still available after touch", -1,
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
FileRotatorTest.java 210 touch("another_rotator.1024");
211 touch("another_rotator.1024-2048");
215 touch("rotator");
216 touch("rotator...");
217 touch("rotator.-");
218 touch("rotator.---");
219 touch("rotator.a-b");
220 touch("rotator_but_not_actually");
321 // write active file, verify this time we touch original
370 private void touch(String... names) throws IOException method in class:FileRotatorTest
    [all...]
  /frameworks/base/tests/touchlag/
touchlag.cpp 250 TouchEvents touch; local
275 // get touch events
276 touch.getMostRecentPosition(&x, &y);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_repr.py 210 def touch(path, text=''): function
223 touch(os.path.join(self.pkgname, '__init__'+os.extsep+'py'))
226 touch(os.path.join(self.subpkgname, '__init__'+os.extsep+'py'))
248 touch(os.path.join(self.subpkgname, self.pkgname + os.extsep + 'py'))
256 touch(os.path.join(self.subpkgname, 'foo'+os.extsep+'py'), '''\
270 touch(os.path.join(self.subpkgname, 'bar'+os.extsep+'py'), '''\
280 touch(os.path.join(self.subpkgname, 'baz'+os.extsep+'py'), '''\
291 touch(os.path.join(self.subpkgname, 'qux'+os.extsep+'py'), '''\
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_repr.py 210 def touch(path, text=''): function
223 touch(os.path.join(self.pkgname, '__init__'+os.extsep+'py'))
226 touch(os.path.join(self.subpkgname, '__init__'+os.extsep+'py'))
248 touch(os.path.join(self.subpkgname, self.pkgname + os.extsep + 'py'))
256 touch(os.path.join(self.subpkgname, 'foo'+os.extsep+'py'), '''\
270 touch(os.path.join(self.subpkgname, 'bar'+os.extsep+'py'), '''\
280 touch(os.path.join(self.subpkgname, 'baz'+os.extsep+'py'), '''\
291 touch(os.path.join(self.subpkgname, 'qux'+os.extsep+'py'), '''\
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 89 private final TouchInput touch; field in class:InputManager
128 * @param touch
131 public InputManager(MouseInput mouse, KeyInput keys, JoyInput joystick, TouchInput touch) {
139 this.touch = touch;
147 if (touch != null) {
148 touch.setInputListener(this);
414 //updating cursor pos on click, so that non android touch events can properly update cursor position.
730 if (touch != null) {
731 touch.setSimulateMouse(value);
    [all...]
  /external/chromium_org/ui/events/x/
events_x.cc 48 // floating devices such as touch screen. Issue 106426 is one example
99 // Detects if a touch event is a driver-generated 'special event'.
100 // A 'special event' is a touch event with maximum radius and pressure at
208 // Should not convert any emulated Motion event from touch device to
209 // touch event.
355 const bool touch = local
359 if (touch) {
366 if ((type == ET_MOUSE_PRESSED || type == ET_MOUSE_RELEASED) && !touch)
  /external/clang/test/Analysis/
inline.cpp 182 void touch(int &x) const { function in struct:Invalidation::X
198 touch(a);
  /external/replicaisland/src/com/replica/replicaisland/
MainMenuActivity.java 201 TouchFilter touch; local
204 touch = new SingleTouchFilter();
206 touch = new MultiTouchFilter();
229 if (touch.supportsMultitouch(this)) {
283 if (touch.supportsMultitouch(this)) {
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
voronoi.cc 455 // Touch points 0..n directly set position of points 0..n in
458 pp::TouchPoint touch = local
460 pp::FloatPoint point = touch.position();
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
voronoi.cc 426 // Touch points 0..n directly set position of points 0..n in
429 pp::TouchPoint touch = local
431 pp::FloatPoint point = touch.position();
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 116 const WebTouchEvent& touch = static_cast<const WebTouchEvent&>(event); local
117 printTouchList(delegate, touch.touches, touch.touchesLength);
118 printTouchList(delegate, touch.changedTouches, touch.changedTouchesLength);
119 printTouchList(delegate, touch.targetTouches, touch.targetTouchesLength);
169 static const WebString kAttributeAcceptsTouch = WebString::fromUTF8("accepts-touch");
170 static const WebString kAttributeReRequestTouchEvents = WebString::fromUTF8("re-request-touch");
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 1382 def touch(self, path, mtime=None): member in class:TestCmd
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 210 * Implements the same behaviour as the "touch" utility on Unix. It creates
218 * @param file the File to touch
221 public static void touch(File file) throws IOException { method in class:FileUtils
    [all...]
  /external/chromium/base/
file_util_win.cc 1159 volatile uint8* touch = reinterpret_cast<uint8*>(dll_module); local
    [all...]

Completed in 1688 milliseconds

12 3 4