Home
last modified time | relevance | path

Searched refs:touches (Results 1 – 25 of 42) sorted by relevance

12

/external/webkit/LayoutTests/fast/events/touch/
Dtouch-coords-in-zoom-and-scroll-expected.txt2 PASS event.touches[0].clientX is 100
3 PASS event.touches[0].clientY is 100
4 PASS event.touches[0].pageX is 100
5 PASS event.touches[0].pageY is 100
8 PASS event.touches[0].clientX is 83
9 PASS event.touches[0].clientY is 83
10 PASS event.touches[0].pageX is 83
11 PASS event.touches[0].pageY is 83
14 PASS event.touches[0].clientX is 100
15 PASS event.touches[0].clientY is 100
[all …]
Dtouch-target-limited-expected.txt1 Tests that the target of touches match the element where the event originated, not where the touch …
8 PASS event.touches[0].target.id is "targetA"
9 PASS event.touches[1].target.id is "targetB"
12 PASS event.touches[0].target.id is "targetA"
13 PASS event.touches[1].target.id is "targetB"
16 PASS event.touches[0].target.id is "targetA"
17 PASS event.touches[1].target.id is "targetB"
20 PASS event.touches[0].target.id is "targetA"
21 PASS event.touches[1].target.id is "targetB"
24 PASS event.touches[0].target.id is "targetA"
[all …]
Dbasic-multi-touch-events-expected.txt9 PASS lastEvent.touches.length is 2
14 PASS lastEvent.touches[0].pageX is 10
15 PASS lastEvent.touches[0].pageY is 10
16 PASS lastEvent.touches[0].clientX is 10
17 PASS lastEvent.touches[0].clientY is 10
18 PASS lastEvent.touches[0].identifier is 0
19 PASS lastEvent.touches[1].pageX is 20
20 PASS lastEvent.touches[1].pageY is 30
21 PASS lastEvent.touches[1].clientX is 20
22 PASS lastEvent.touches[1].clientY is 30
[all …]
Dtouch-target-expected.txt1 Tests that the target of touches match the element where the event originated, not where the touch …
8 PASS event.touches[0].target.id is "targetA"
9 PASS event.touches[1].target.id is "targetB"
12 PASS event.touches[0].target.id is "targetA"
13 PASS event.touches[1].target.id is "targetB"
16 PASS event.touches[0].target.id is "targetA"
17 PASS event.touches[1].target.id is "targetB"
20 PASS event.touches[0].target.id is "targetA"
21 PASS event.touches[1].target.id is "targetB"
24 PASS event.touches[0].target.id is "targetA"
[all …]
Dbasic-multi-touch-events-limited-expected.txt7 PASS lastEvent.touches.length is 2
12 PASS lastEvent.touches[0].pageX is 10
13 PASS lastEvent.touches[0].pageY is 10
14 PASS lastEvent.touches[0].clientX is 10
15 PASS lastEvent.touches[0].clientY is 10
16 PASS lastEvent.touches[0].identifier is 0
17 PASS lastEvent.touches[1].pageX is 20
18 PASS lastEvent.touches[1].pageY is 30
19 PASS lastEvent.touches[1].clientX is 20
20 PASS lastEvent.touches[1].clientY is 30
[all …]
Dbasic-single-touch-events-expected.txt7 PASS lastEvent.touches.length is 1
13 PASS lastEvent.touches[0].target.id is "touchtarget"
14 PASS lastEvent.touches[0].pageX is 10
15 PASS lastEvent.touches[0].pageY is 10
16 PASS lastEvent.touches[0].clientX is 10
17 PASS lastEvent.touches[0].clientY is 10
18 PASS lastEvent.touches[0].identifier is 0
30 PASS lastEvent.touches.length is 1
35 PASS lastEvent.touches[0].pageX is 50
36 PASS lastEvent.touches[0].pageY is 50
[all …]
Dmulti-touch-grouped-targets-expected.txt1 Tests that the an event is sent for every touch listener, and target touches contains all the point…
7 PASS event.touches.length is 3
9 PASS event.touches.length is 3
11 PASS event.touches.length is 3
13 PASS event.touches.length is 3
16 PASS event.touches.length is 0
20 PASS event.touches.length is 0
Ddocument-create-touch-list-expected.txt11 PASS ts.touches.length is 2
12 PASS ts.touches[0].identifier is 12341
13 PASS ts.touches[0].clientX is 60
14 PASS ts.touches[1].screenY is 120
Dtouch-active-state-expected.txt1 Test touches set the active state.
Dtouch-inside-iframe-expected.txt2 Test iframes receive touches correctly.
/external/webkit/Source/WebCore/dom/
DTouchEvent.h44 static PassRefPtr<TouchEvent> create(TouchList* touches, in create() argument
50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches, in create()
55 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
61 TouchList* touches() const { return m_touches.get(); } in touches() function
67 TouchEvent(TouchList* touches, TouchList* targetTouches,
DTouchEvent.cpp38 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, in TouchEvent() argument
44 , m_touches(touches) in TouchEvent()
54 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, in initTouchEvent() argument
64 m_touches = touches; in initTouchEvent()
DTouchEvent.idl31 readonly attribute TouchList touches;
39 void initTouchEvent(in TouchList touches,
/external/chromium/chrome/browser/resources/touch_ntp/
Dtouchhandler.js387 e.touches = [];
391 e.touches[0] = touch;
458 if (e.touches.length > 1)
530 findActiveTouch_: function(touches) { argument
534 for (var i = 0; i < touches.length; i++) {
535 if (touches[i].identifier == this.activeTouch_)
536 return touches[i];
551 assert(this.findActiveTouch_(e.touches), 'Missing touchEnd');
670 assert(!this.findActiveTouch_(e.touches),
/external/chromium/chrome/browser/resources/ntp4/
Dtouch_handler.js387 e.touches = [];
391 e.touches[0] = touch;
458 if (e.touches.length > 1)
530 findActiveTouch_: function(touches) { argument
534 for (var i = 0; i < touches.length; i++) {
535 if (touches[i].identifier == this.activeTouch_)
536 return touches[i];
551 assert(this.findActiveTouch_(e.touches), 'Missing touchEnd');
670 assert(!this.findActiveTouch_(e.touches),
/external/webkit/Source/WebCore/html/
DRangeInputType.cpp206 if (touchEvent->touches() && touchEvent->touches()->item(0)) { in handleTouchStartEvent()
208 curPoint.setX(touchEvent->touches()->item(0)->pageX()); in handleTouchStartEvent()
209 curPoint.setY(touchEvent->touches()->item(0)->pageY()); in handleTouchStartEvent()
/external/webkit/Source/WebCore/html/shadow/
DSliderThumbElement.cpp236 if (touchEvent->touches() && touchEvent->touches()->item(0)) { in defaultEventHandler()
238 curPoint.setX(touchEvent->touches()->item(0)->pageX()); in defaultEventHandler()
239 curPoint.setY(touchEvent->touches()->item(0)->pageY()); in defaultEventHandler()
/external/chromium/chrome/browser/resources/touch_ntp/standalone/
Dstandalone_hack.js390 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/LayoutTests/fast/events/touch/resources/
Dtouch-stale-node-crash.js5 var target = e.touches[0].target;
/external/webkit/Source/WebCore/plugins/android/
DPluginViewAndroid.cpp245 TouchList* touches = (evt.data.multiTouch.action == kUp_ANPTouchAction in handleTouchEvent() local
246 …evt.data.multiTouch.action == kCancel_ANPTouchAction) ? event->changedTouches() : event->touches(); in handleTouchEvent()
249 int pointerCount = touches->length(); in handleTouchEvent()
254 Touch* touch = touches->item(x); in handleTouchEvent()
/external/elfutils/
DTODO108 if TEXTREL check whether any relocation touches RO segment
110 if TEXTREL not set check that no relocation touches RO segment
/external/llvm/cmake/modules/
DChooseMSVCCRT.cmake47 # CMake requires the docstring parameter whenever set() touches the cache,
/external/oprofile/events/ppc/e500/
Devents29 …heable DCBT and DCBTST instructions translated (L1 only) (Does not count touches that are converte…
38 …es translated and allocated to dLFB (Applies to same class of instructions as touches translated.)
/external/oprofile/events/ppc/e500v2/
Devents29 …heable DCBT and DCBTST instructions translated (L1 only) (Does not count touches that are converte…
38 …es translated and allocated to dLFB (Applies to same class of instructions as touches translated.)
/external/quake/quake/src/QW/progs/
Dsubs.qc34 // trigger angles are used for one-way touches. An angle of 0 is assumed

12