Searched defs:touches (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTouchEventContext.h45 TouchList& touches() { return *m_touches; } function in class:blink::TouchEventContext
H A DTouchEvent.cpp42 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, argument
48 , m_touches(touches)
58 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, argument
73 m_touches = touches;
H A DTouchEvent.h45 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, argument
50 return adoptRefWillBeNoop(new TouchEvent(touches, targetTouches, changedTouches, type, view,
54 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
60 TouchList* touches() const { return m_touches.get(); } function in class:blink::FINAL
64 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = touches; } argument
78 TouchEvent(TouchList* touches, TouchList* targetTouches,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.h45 static PassRefPtrWillBeRawPtr<TouchList> adopt(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches) argument
47 return adoptRefWillBeNoop(new TouchList(touches));
62 TouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches) argument
64 m_values.swap(touches);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsBoundsTest.cpp55 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); local
56 REPORTER_ASSERT(reporter, touches);
63 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); local
64 REPORTER_ASSERT(reporter, !touches);
/external/skia/tests/
H A DPathOpsBoundsTest.cpp55 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); local
56 REPORTER_ASSERT(reporter, touches);
63 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); local
64 REPORTER_ASSERT(reporter, !touches);
/external/chromium_org/ppapi/shared_impl/
H A Dppb_input_event_shared.h57 std::vector<PP_TouchPoint> touches; member in struct:ppapi::InputEventData
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputEventConversion.cpp458 m_touchPoints.append(PlatformTouchPointBuilder(widget, event.touches[i]));
558 if (!event.touches())
560 if (event.touches()->length() != 1) {
561 if (event.touches()->length() || event.type() != EventTypeNames::touchend || !event.changedTouches() || event.changedTouches()->length() != 1)
565 const Touch* touch = event.touches()->length() == 1 ? event.touches()->item(0) : event.changedTouches()->item(0);
767 static void addTouchPointsIfNotYetAdded(const Widget* widget, WebTouchPoint::State state, TouchList* touches, WebTouchPoint* touchPoints, unsigned* touchPointsLength, const RenderObject* renderObject) argument
770 for (unsigned i = 0; i < touches->length(); ++i) {
775 const Touch* touch = touches->item(i);
804 addTouchPointsIfNotYetAdded(widget, toWebTouchPointState(event.type()), event.changedTouches(), touches,
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dinput_router_impl_perftest.cc140 Touches touches; local
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);
155 touch.touches[0].state = WebTouchPoint::StateMoved;
157 touch.touches[
309 Touches touches = BuildTouchSequence(steps, origin, distance); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRangeInputType.cpp163 TouchList* touches = event->targetTouches(); local
164 if (touches->length() == 1) {
165 sliderThumbElement()->setPositionFromPoint(touches->item(0)->absoluteLocation());
/external/chromium_org/content/renderer/pepper/
H A Devent_conversion.cc221 void SetPPTouchPoints(const WebTouchPoint* touches, argument
226 const WebTouchPoint& touch_point = touches[i];
256 touch_event.touches, touch_event.touchesLength, ACTIVE, &result.touches);
257 SetPPTouchPoints(touch_event.touches,
261 SetPPTouchPoints(touch_event.touches,
348 // First add all changed touches, then add only the remaining unset
349 // (stationary) touches.
352 web_event->touches,
354 SetWebTouchPointsIfNotYetSet(event.touches,
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/life_simd/
H A Dlife.cc108 void ProcessTouchEvent(const pp::TouchInputEvent& touches);
196 void Life::ProcessTouchEvent(const pp::TouchInputEvent& touches) { argument
197 uint32_t count = touches.GetTouchCount(PP_TOUCHLIST_TYPE_TOUCHES);
201 touches.GetTouchByIndex(PP_TOUCHLIST_TYPE_TOUCHES, i);
271 pp::TouchInputEvent touches = pp::TouchInputEvent(event); local
272 ProcessTouchEvent(touches);
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
H A Dvoronoi.cc424 pp::TouchInputEvent touches = pp::TouchInputEvent(event); local
425 uint32_t count = touches.GetTouchCount(PP_TOUCHLIST_TYPE_TOUCHES);
430 touches.GetTouchByIndex(PP_TOUCHLIST_TYPE_TOUCHES, i);
/external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
H A Dvoronoi.cc453 pp::TouchInputEvent touches = pp::TouchInputEvent(event); local
454 uint32_t count = touches.GetTouchCount(PP_TOUCHLIST_TYPE_TOUCHES);
459 touches.GetTouchByIndex(PP_TOUCHLIST_TYPE_TOUCHES, i);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputEvent.h486 // Maximum number of simultaneous touches supported on
491 // List of all touches, regardless of state.
492 WebTouchPoint touches[touchesLengthCap]; member in class:blink::WebTouchEvent
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp3546 // touches. http://crbug.com/345372 tracks this.
3629 // Build up the lists to use for the 'touches', 'targetTouches' and
3634 // Holds the complete set of touches on the screen.
3635 RefPtrWillBeRawPtr<TouchList> touches = TouchList::create(); local
3637 // A different view on the 'touches' list above, filtered and grouped by
3642 // Array of touches per state, used to assemble the 'changedTouches' list.
3645 // The touches corresponding to the particular change state this struct
3719 // touches and targetTouches should only contain information about
3720 // touches still on the screen, so if this point is released or
3723 touches
[all...]
/external/chromium_org/third_party/d3/src/
H A Dd3.js1105 d3.touches = function(container, touches) {
1106 if (arguments.length < 2) touches = d3_eventSource().touches;
1107 return touches ? d3_array(touches).map(function(touch) {
1371 var touches = d3.touches(that);
1373 touches.forEach(function(t) {
1376 return touches;
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3968 milliseconds