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

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.h43 static PassRefPtr<TouchList> create(Vector<RefPtr<Touch> >& touches) argument
45 return adoptRef(new TouchList(touches));
61 TouchList(Vector<RefPtr<Touch> >& touches) argument
63 m_values.swap(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/core/events/
H A DTouchEvent.cpp42 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, argument
50 , m_touches(touches)
61 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, argument
71 m_touches = touches;
H A DTouchEvent.h44 static PassRefPtr<TouchEvent> create(TouchList* touches, argument
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
65 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; } argument
75 TouchEvent(TouchList* touches, TouchList* targetTouches,
H A DEventContext.h46 TouchList* touches() { return m_touches.get(); } function in class:WebCore::TouchEventContext
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputEventConversion.cpp434 m_touchPoints.append(PlatformTouchPointBuilder(widget, event.touches[i]));
525 if (!event.touches())
527 if (event.touches()->length() != 1) {
528 if (event.touches()->length() || event.type() != EventTypeNames::touchend || !event.changedTouches() || event.changedTouches()->length() != 1)
532 const Touch* touch = event.touches()->length() == 1 ? event.touches()->item(0) : event.changedTouches()->item(0);
699 static void addTouchPoints(const Widget* widget, const AtomicString& touchType, TouchList* touches, WebTouchPoint* touchPoints, unsigned* touchPointsLength, const WebCore::RenderObject* renderObject) argument
701 unsigned numberOfTouches = std::min(touches->length(), static_cast<unsigned>(WebTouchEvent::touchesLengthCap));
703 const Touch* touch = touches->item(i);
739 addTouchPoints(widget, event.type(), event.touches(), touche
[all...]
/external/chromium_org/ui/events/gestures/
H A Dgesture_recognizer_impl.cc196 std::vector<std::pair<int, GestureConsumer*> >* touches) {
197 while (!touches->empty()) {
198 int touch_id = touches->begin()->first;
199 GestureConsumer* target = touches->begin()->second;
206 touches->erase(touches->begin());
195 CancelTouches( std::vector<std::pair<int, GestureConsumer*> >* touches) argument
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRangeInputType.cpp172 TouchList* touches = event->targetTouches(); local
173 if (touches->length() == 1) {
174 sliderThumbElement()->setPositionFromPoint(touches->item(0)->absoluteLocation());
/external/chromium_org/content/renderer/pepper/
H A Devent_conversion.cc221 void SetPPTouchPoints(const WebTouchPoint* touches, uint32_t touches_length, argument
224 const WebTouchPoint& touch_point = touches[i];
243 SetPPTouchPoints(touch_event.touches, touch_event.touchesLength,
244 &result.touches);
256 // we have to set the state for the changed touches to be the same as the event
324 SetWebTouchPoints(event.touches, states_map, web_event->touches,
333 web_event->touches, &web_event->touchesLength);
/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.h472 // Maximum number of simultaneous touches supported on
477 // List of all touches which are currently down.
478 WebTouchPoint touches[touchesLengthCap]; member in class:blink::WebTouchEvent
481 // List of all touches whose state has changed since the last WebTouchEvent
485 // List of all touches which are currently down and are targeting the event recipient.
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp3595 // First build up the lists to use for the 'touches', 'targetTouches' and 'changedTouches' attributes
3599 // Holds the complete set of touches on the screen and will be used as the 'touches' list in the JS event.
3600 RefPtr<TouchList> touches = TouchList::create(); local
3602 // A different view on the 'touches' list above, filtered and grouped by event target. Used for the
3607 // Array of touches per state, used to assemble the 'changedTouches' list in the JS event.
3610 // The touches corresponding to the particular change state this struct instance represents.
3741 // touches and targetTouches should only contain information about touches still on the screen, so if this point is
3744 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 391 milliseconds