Home | History | Annotate | Download | only in chromium

Lines Matching full:touchpoints

96 static Vector<WebTouchPoint> touchPoints;
324 touchPoints.clear();
848 touchPoint.id = touchPoints.size();
849 touchPoints.append(touchPoint);
855 touchPoints.clear();
863 ASSERT(index < touchPoints.size());
865 WebTouchPoint* touchPoint = &touchPoints[index];
895 ASSERT(index < touchPoints.size());
898 WebTouchPoint* touchPoint = &touchPoints[index];
909 touchPoints.size());
911 WebTouchPoint* touchPoint = &touchPoints[index];
917 ASSERT(static_cast<unsigned>(WebTouchEvent::touchPointsLengthCap) > touchPoints.size());
924 touchEvent.touchPointsLength = touchPoints.size();
925 for (unsigned i = 0; i < touchPoints.size(); ++i)
926 touchEvent.touchPoints[i] = touchPoints[i];
929 for (unsigned i = 0; i < touchPoints.size(); ++i) {
930 WebTouchPoint* touchPoint = &touchPoints[i];
932 touchPoints.remove(i);