HomeSort by relevance Sort by last modified time
    Searched defs:touch (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-for-weak-vtables-and-externals 39 sub touch($);
111 touch($buildTimestampPath);
115 sub touch($) subroutine
118 open(TOUCH, ">", $path) or die "$!";
119 close(TOUCH);
check-for-global-initializers 39 sub touch($);
145 touch($buildTimestampPath);
148 sub touch($) subroutine
151 open(TOUCH, ">", $path) or die "$!";
152 close(TOUCH);
check-for-exit-time-destructors 39 sub touch($);
105 touch($buildTimestampPath);
108 sub touch($) subroutine
111 open(TOUCH, ">", $path) or die "$!";
112 close(TOUCH);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/touch/
TouchPresentation.java 17 package com.android.cts.verifier.projection.touch;
ProjectionTouchActivity.java 17 package com.android.cts.verifier.projection.touch;
TouchPointView.java 17 package com.android.cts.verifier.projection.touch;
31 * Simple view that draws a circle where a touch is registered
  /external/chromium_org/content/common/input/
input_event_stream_validator.cc 42 const WebTouchEvent& touch = static_cast<const WebTouchEvent&>(event); local
43 return touch_validator_.Validate(touch, error_msg);
web_input_event_traits_unittest.cc 24 WebTouchPoint touch; local
25 touch.state = state;
26 touch.id = id;
27 return touch;
57 // Non touch-moves won't coalesce.
63 // Touch moves with idential touch lengths and touch ids should coalesce.
66 // Touch moves with different touch ids should not coalesce
    [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion_unittest.cc 41 SyntheticWebTouchEvent touch; local
42 touch.PressPoint(1.f, 2.f);
45 CreateInputEventData(touch, &pp_events);
58 EXPECT_EQ(touch.type, touch_out->type);
59 EXPECT_EQ(touch.touchesLength, touch_out->touchesLength);
60 CompareWebTouchEvents(touch, *touch_out);
64 SyntheticWebTouchEvent touch; local
65 touch.PressPoint(1.f, 2.f);
66 touch.ResetPoints();
67 touch.PressPoint(3.f, 4.f)
91 SyntheticWebTouchEvent touch; local
118 SyntheticWebTouchEvent touch; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.cc 100 const blink::WebTouchEvent& touch = touch_with_latency.event; local
102 switch (touch.type) {
120 int flags = WebModifiersToUIFlags(touch.modifiers);
122 static_cast<int64>(touch.timeStampSeconds * 1000000));
123 for (unsigned i = 0; i < touch.touchesLength; ++i) {
124 const blink::WebTouchPoint& point = touch.touches[i];
252 // Add a new touch point.
261 // The touch point should have been added to the event from an earlier
263 // At the moment, only a maximum of 4 touch-points are allowed. So a
274 DLOG(WARNING) << "Unknown touch event " << event.type()
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_util.cc 188 WebTouchPoint touch; local
189 touch.id = event.GetPointerId(pointer_index);
190 touch.state = ToWebTouchPointState(
193 touch.position.x = event.GetX(pointer_index);
194 touch.position.y = event.GetY(pointer_index);
195 touch.screenPosition.x = event.GetRawX(pointer_index);
196 touch.screenPosition.y = event.GetRawY(pointer_index);
198 // A note on touch ellipse specifications:
200 // Android MotionEvent provides the major and minor axes of the touch ellipse,
205 // The proposed extension to W3C Touch Events specifies the touch ellips
    [all...]
touch_input_browsertest.cc 178 SyntheticWebTouchEvent touch; local
181 // no touch-handler on it.
182 touch.PressPoint(25, 25);
183 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
189 // If a touch-press is acked with NO_CONSUMER_EXISTS, then subsequent
190 // touch-points don't need to be dispatched until the touch point is released.
191 touch.ReleasePoint(0);
192 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
193 touch.ResetPoints()
198 SyntheticWebTouchEvent touch; local
215 SyntheticWebTouchEvent touch; local
237 SyntheticWebTouchEvent touch; local
    [all...]
input_router_impl_perftest.cc 143 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);
    [all...]
touch_event_queue.cc 62 // 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 event in the queue. Forward it to the rendere
475 TouchEventWithLatencyInfo touch = touch_queue_.front()->coalesced_event(); local
    [all...]
  /external/chromium_org/content/renderer/
render_widget_unittest.cc 80 SyntheticWebTouchEvent touch; local
81 touch.PressPoint(10, 10);
83 widget->SendInputEvent(touch);
86 // Since there's currently no touch-event handling region, the response should
101 widget->SendInputEvent(touch);
118 SyntheticWebTouchEvent touch; local
119 touch.PressPoint(25, 25);
121 widget->SendInputEvent(touch);
124 // Since there's currently no touch-event handling region, the response should
134 // Press a second touch point. This time, on a touch-handling region
    [all...]
  /external/chromium_org/ui/aura/
window_targeter.cc 142 // Query the gesture-recognizer to find targets for touch events.
143 const ui::TouchEvent& touch = static_cast<const ui::TouchEvent&>(event); local
145 ui::GestureRecognizer::Get()->GetTouchLockedTarget(touch);
150 event.location(), touch.source_device_id());
154 // If the initial touch is outside the root window, target the root.
  /external/clang/test/CodeGenCXX/
captured-statements.cpp 100 void touch(const T &) {} function
107 touch<T, id>(x);
118 touch<T, id>(v);
126 touch<U, id + id2>(u);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 35 #include "core/dom/Touch.h"
125 RefPtrWillBeRawPtr<Touch> touch0 = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), p0.id, p0.screenPosition, p0.position, FloatSize(p0.radiusX, p0.radiusY), p0.rotationAngle, p0.force);
126 RefPtrWillBeRawPtr<Touch> touch1 = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), p1.id, p1.screenPosition, p1.position, FloatSize(p1.radiusX, p1.radiusY), p1.rotationAngle, p1.force);
205 RefPtrWillBeRawPtr<Touch> touch = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), i, p0.screenPosition, p0.position, FloatSize(p0.radiusX, p0.radiusY), p0.rotationAngle, p0.force); local
206 touchList->append(touch);
207 changedTouchList->append(touch);
407 RefPtrWillBeRawPtr<Touch> touch = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), 0, FloatPoint(10, 9.5), FloatPoint(3.5, 2), FloatSize(4, 4.5), 0, 0); local
    [all...]
  /external/chromium_org/content/renderer/input/
input_handler_proxy_unittest.cc 144 // touch any member variables after making that call.
1436 WebTouchEvent touch; local
1463 WebTouchEvent touch; local
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/life/
life.c 131 struct PP_TouchPoint touch = g_pTouchInput->GetTouchByIndex( local
133 int radius = (int)touch.radius.x;
134 int x = (int)touch.position.x;
135 int y = (int)touch.position.y;
136 /* num = 1/100th the area of touch point */
141 /* 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 */
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.cpp 32 #include "core/dom/Touch.h"
321 const Touch& touch = *touchList->item(i); local
323 buildRelatedNodeMap(touch.target()->toNode(), relatedNodeMap);
325 adjustedTouchList[j]->append(touch.cloneWithNewTarget(findRelatedNode(treeScopes[j], relatedNodeMap)));
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 34 #include "core/dom/Touch.h"
555 // with touch input for plugins that don't support touch input).
565 const Touch* touch = event.touches()->length() == 1 ? event.touches()->item(0) : event.changedTouches()->item(0); local
566 if (touch->identifier())
581 // The mouse event co-ordinates should be generated from the co-ordinates of the touch point.
583 IntPoint windowPoint = roundedIntPoint(touch->absoluteLocation());
586 IntPoint screenPoint = roundedIntPoint(touch->screenLocation());
596 IntPoint localPoint = convertAbsoluteLocationForRenderObject(touch->absoluteLocation(), *renderObject)
775 const Touch* touch = touches->item(i); local
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
gallery_item.js 145 Gallery.Item.prototype.touch = function() {
  /external/clang/test/Analysis/
inline.cpp 183 void touch(int &x) const { function in struct:Invalidation::X
199 touch(a);

Completed in 300 milliseconds

1 2