HomeSort by relevance Sort by last modified time
    Searched refs:touches (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/dom/
TouchEvent.h 44 static PassRefPtr<TouchEvent> create(TouchList* touches,
50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches,
55 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
61 TouchList* touches() const { return m_touches.get(); } function in class:WebCore::TouchEvent
67 TouchEvent(TouchList* touches, TouchList* targetTouches,
TouchEvent.cpp 38 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches,
44 , m_touches(touches)
54 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches,
64 m_touches = touches;
TouchEvent.idl 31 readonly attribute TouchList touches;
39 void initTouchEvent(in TouchList touches,
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
touch-target-limited.js 29 shouldBeEqualToString('event.touches[0].target.id', div1.id);
30 shouldBeEqualToString('event.touches[1].target.id', div2.id);
33 shouldBeEqualToString('event.touches[0].target.id', div2.id);
34 shouldBeEqualToString('event.touches[1].target.id', div1.id);
54 shouldBeEqualToString('event.touches[0].target.id', div1.id);
55 shouldBeEqualToString('event.touches[1].target.id', div2.id);
58 shouldBeEqualToString('event.touches[0].target.id', div2.id);
59 shouldBeEqualToString('event.touches[1].target.id', div1.id);
80 description("Tests that the target of touches match the element where the event originated, not where the touch is currently occurring. This is a limited version of test touch-target.html that avoids the situation where one touch point is released while another is maintained.");
touch-target.js 29 shouldBeEqualToString('event.touches[0].target.id', div1.id);
30 shouldBeEqualToString('event.touches[1].target.id', div2.id);
33 shouldBeEqualToString('event.touches[0].target.id', div2.id);
34 shouldBeEqualToString('event.touches[1].target.id', div1.id);
54 shouldBeEqualToString('event.touches[0].target.id', div1.id);
55 shouldBeEqualToString('event.touches[1].target.id', div2.id);
58 shouldBeEqualToString('event.touches[0].target.id', div2.id);
59 shouldBeEqualToString('event.touches[1].target.id', div1.id);
80 description("Tests that the target of touches match the element where the event originated, not where the touch is currently occurring.");
document-create-touch-list.js 23 shouldBe("ts.touches.length", "2");
24 shouldBe("ts.touches[0].identifier", "12341");
25 shouldBe("ts.touches[0].clientX", "60");
26 shouldBe("ts.touches[1].screenY", "120");
basic-multi-touch-events.js 37 shouldBe("lastEvent.touches.length", totalTouchCount.toString());
57 verifyTouchPoint("touches", 0, 10, 10, 0);
58 verifyTouchPoint("touches", 1, 20, 30, 1);
66 verifyTouchPoint("touches", 0, 15, 15, 0);
68 verifyTouchPoint("touches", 1, 20, 30, 1);
72 verifyTouchPoint("touches", 0, 20, 30, 1);
basic-multi-touch-events-limited.js 37 shouldBe("lastEvent.touches.length", totalTouchCount.toString());
57 verifyTouchPoint("touches", 0, 10, 10, 0);
58 verifyTouchPoint("touches", 1, 20, 30, 1);
66 verifyTouchPoint("touches", 0, 15, 15, 0);
67 verifyTouchPoint("touches", 1, 25, 35, 1);
basic-single-touch-events.js 37 shouldBe("lastEvent.touches.length", totalTouchCount.toString());
58 shouldBeEqualToString("lastEvent.touches[0].target.id", "touchtarget");
59 verifyTouchPoint("touches", 0, 10, 10, 0);
65 verifyTouchPoint("touches", 0, 50, 50, 0);
83 shouldBeEqualToString("lastEvent.touches[0].target.tagName", "DIV");
multi-touch-grouped-targets.js 28 shouldBe('event.touches.length', '3');
45 shouldBe('event.touches.length', '0');
65 description("Tests that the an event is sent for every touch listener, and target touches contains all the points for that target");
  /external/webkit/LayoutTests/fast/events/touch/resources/
touch-stale-node-crash.js 5 var target = e.touches[0].target;
  /external/webkit/Source/WebCore/html/
RangeInputType.cpp 206 if (touchEvent->touches() && touchEvent->touches()->item(0)) {
208 curPoint.setX(touchEvent->touches()->item(0)->pageX());
209 curPoint.setY(touchEvent->touches()->item(0)->pageY());
  /external/webkit/Source/WebCore/html/shadow/
SliderThumbElement.cpp 236 if (touchEvent->touches() && touchEvent->touches()->item(0)) {
238 curPoint.setX(touchEvent->touches()->item(0)->pageX());
239 curPoint.setY(touchEvent->touches()->item(0)->pageY());
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 244 // co-ordinates as there is no touch in touches anymore.
245 TouchList* touches = (evt.data.multiTouch.action == kUp_ANPTouchAction local
246 || evt.data.multiTouch.action == kCancel_ANPTouchAction) ? event->changedTouches() : event->touches();
249 int pointerCount = touches->length();
254 Touch* touch = touches->item(x);
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 390 x: event.touches[0].clientX,
391 y: event.touches[0].clientY
396 gestureActive = event.touches.length > 1;
403 var t = event.touches[0];
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 3085 RefPtr<TouchList> touches = TouchList::create(); local
    [all...]

Completed in 540 milliseconds