Searched defs:touch (Results 26 - 50 of 56) sorted by relevance

123

/external/chromium_org/ui/file_manager/gallery/js/
H A Dgallery_item.js145 Gallery.Item.prototype.touch = function() {
/external/guava/guava/src/com/google/common/io/
H A DFiles.java440 public static void touch(File file) throws IOException { method in class:Files
/external/chromium_org/content/browser/renderer_host/input/
H A Dinput_router_impl_perftest.cc143 WebTouchEvent touch; local
144 touch.touchesLength = 1;
145 touch.type = WebInputEvent::TouchStart;
146 touch.touches[0].id = 0;
147 touch.touches[0].state = WebTouchPoint::StatePressed;
148 touch.touches[0].position.x = origin.x();
149 touch.touches[0].position.y = origin.y();
150 touch.touches[0].screenPosition.x = origin.x();
151 touch.touches[0].screenPosition.y = origin.y();
152 touches.push_back(touch);
230 SendEvent(const WebTouchEvent& touch, const ui::LatencyInfo& latency) argument
[all...]
H A Dinput_router_impl_unittest.cc63 static WebTouchEvent touch; local
64 event = &touch;
587 // Tests that touch-events are queued properly.
597 // The second touch should not be sent since one is already in queue.
604 // Receive an ACK for the first touch-event.
622 // Tests that the touch-queue is emptied after a page stops listening for touch
632 // Send a touch-press event.
640 // The page stops listening for touch-events. Note that flushing is deferred
648 // After the ack, the touch
[all...]
H A Dtouch_event_queue.cc62 // Cancels a touch sequence if a touchstart or touchmove ack response is
202 // How long to wait on a touch ack before cancelling the touch sequence.
205 // The touch event source for which we expect the next ack.
218 // Provides touchmove slop suppression for a single touch that remains within
278 // This class represents a single coalesced touch event. However, it also keeps
279 // track of all the original touch-events that were coalesced into a single
281 // touch-events are sent to the Client (on ACK for the coalesced event) so that
402 // Optimization of the case without touch handlers. Removing this path
413 // There is no touch even
475 TouchEventWithLatencyInfo touch = touch_queue_.front()->coalesced_event(); local
704 SendTouchEventImmediately( const TouchEventWithLatencyInfo& touch) argument
[all...]
/external/chromium_org/ash/touch/
H A Dtouch_hud_debug.cc5 #include "ash/touch/touch_hud_debug.h"
97 // A TouchPointLog represents a single touch-event of a touch point.
100 explicit TouchPointLog(const ui::TouchEvent& touch) argument
101 : id(touch.touch_id()),
102 type(touch.type()),
103 location(touch.root_location()),
104 timestamp(touch.time_stamp().InMillisecondsF()),
105 radius_x(touch.radius_x()),
106 radius_y(touch
154 AddTouchPoint(const ui::TouchEvent& touch) argument
189 AddTouchPoint(const ui::TouchEvent& touch) argument
219 StartTrace(const ui::TouchEvent& touch) argument
234 AddToTrace(const ui::TouchEvent& touch) argument
[all...]
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_view_aura_browsertest.cc925 // Tests that touch moves are not throttled when performing a scroll gesture on
951 // Send touch press.
952 SyntheticWebTouchEvent touch; local
953 touch.PressPoint(bounds.x() + 2, bounds.y() + 10);
954 GetRenderWidgetHost()->ForwardTouchEventWithLatencyInfo(touch,
963 // Send first touch move, and then a scroll begin.
964 touch.MovePoint(0, bounds.x() + 20 + 1 * dx, bounds.y() + 100);
965 GetRenderWidgetHost()->ForwardTouchEventWithLatencyInfo(touch,
979 // Send a touch move, followed by a scroll update
980 touch
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/life_simd/
H A Dlife.cc200 pp::TouchPoint touch = local
202 int radius = (int)(touch.radii().x());
203 int x = (int)(touch.position().x());
204 int y = (int)(touch.position().y());
205 // num = 1/100th the area of touch point
210 // only plot random cells within the touch area
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
H A Dvoronoi.cc429 pp::TouchPoint touch = local
431 pp::FloatPoint point = touch.position();
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py1382 def touch(self, path, mtime=None): member in class:TestCmd
/external/clang/test/Analysis/
H A Dinline.cpp183 void touch(int &x) const { function in struct:Invalidation::X
199 touch(a);
/external/chromium_org/content/browser/frame_host/
H A Drender_widget_host_view_child_frame.cc247 const TouchEventWithLatencyInfo& touch,
246 ProcessAckedTouchEvent( const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) argument
H A Drender_widget_host_view_guest.cc130 const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) {
132 // requested touch events. A better solution is to always forward touchpresses
134 // subsequent touch points of that touchdown to the appropriate guest until
135 // that touch point is released.
137 if (!MakeUITouchEventsFromWebTouchEvents(touch, &events, LOCAL_COORDINATES))
129 ProcessAckedTouchEvent( const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) argument
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_plugin.cc99 const blink::WebTouchEvent& touch = local
101 PrintTouchList(delegate, touch.touches, touch.touchesLength);
159 blink::WebString, kAttributeAcceptsTouch, ("accepts-touch"));
161 blink::WebString, kAttributeReRequestTouchEvents, ("re-request-touch"));
/external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
H A Dvoronoi.cc458 pp::TouchPoint touch = local
460 pp::FloatPoint point = touch.position();
/external/chromium_org/ui/events/x/
H A Devents_x.cc67 // floating devices such as touch screen. Issue 106426 is one example
113 // Detects if a touch event is a driver-generated 'special event'.
114 // A 'special event' is a touch event with maximum radius and pressure at
270 // Should not convert any emulated Motion event from touch device to
271 // touch event.
502 const bool touch = local
506 if (touch) {
513 if ((type == ET_MOUSE_PRESSED || type == ET_MOUSE_RELEASED) && !touch)
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_android.cc720 // This is good enough as long as the first touch event has Begin semantics
1394 const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) {
1393 ProcessAckedTouchEvent( const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) argument
H A Drender_widget_host_view_aura.cc1172 const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) {
1174 if (!MakeUITouchEventsFromWebTouchEvents(touch, &events,
2052 // Update the touch event first.
2056 // Forward the touch event only if a touch point was updated, and there's a
2057 // touch-event handler in the page, and no other touch-event is in the queue.
2058 // It is important to always consume the event if there is a touch-event
2059 // handler in the page, or some touch-event is already in the queue, even if
1171 ProcessAckedTouchEvent( const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) argument
/external/libpng/contrib/libtests/
H A Dpngstest.c3501 const char *touch = NULL; local
3591 else if (strcmp(arg, "--touch") == 0)
3594 touch = argv[++c];
3770 if (retval == 0 && touch != NULL)
3772 FILE *fsuccess = fopen(touch, "wt");
3784 fprintf(stderr, "%s: write failed\n", touch);
3792 fprintf(stderr, "%s: open failed\n", touch);
H A Dpngvalid.c10030 PNG_CONST char *volatile touch = NULL; local
10300 else if (argc > 1 && strcmp(*argv, "--touch") == 0)
10301 --argc, touch = *++argv, catmore = 1;
10541 if (touch != NULL)
10543 FILE *fsuccess = fopen(touch, "wt");
10554 fprintf(stderr, "%s: write failed\n", touch);
10561 fprintf(stderr, "%s: open failed\n", touch);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp1411 // Mouse events simulated from touch should not hit-test again.
1539 // Mouse events simulated from touch should not hit-test again.
2073 // Hit test across all frames and do touch adjustment as necessary for the event type.
2291 // supplied HitTestResult), but that will require some overhaul of the touch drag-and-drop code
2412 // Needed for <option> and <optgroup> elements so we can touch scroll <select>s
2523 // If the touch is over a scrollbar, don't adjust the touch point since touch adjustment only takes into account
2524 // DOM nodes so a touch over a scrollbar will be adjusted towards nearby nodes. This leads to things like textarea
2588 // we don't yet apply hover/active state here because we need to resolve touch adjustmen
3708 RefPtrWillBeRawPtr<Touch> touch = Touch::create( local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 691 milliseconds

123