Home | History | Annotate | Download | only in runner

Lines Matching defs:touchPoints

101 vector<WebTouchPoint> touchPoints;
359 touchPoints.clear();
982 for (size_t i = 0; i < touchPoints.size(); i++) {
983 if (touchPoints[i].id == lowestId)
987 touchPoints.push_back(touchPoint);
993 touchPoints.clear();
1001 WEBKIT_ASSERT(index < touchPoints.size());
1003 WebTouchPoint* touchPoint = &touchPoints[index];
1033 WEBKIT_ASSERT(index < touchPoints.size());
1036 WebTouchPoint* touchPoint = &touchPoints[index];
1047 WEBKIT_ASSERT(index < touchPoints.size());
1049 WebTouchPoint* touchPoint = &touchPoints[index];
1055 WEBKIT_ASSERT(static_cast<unsigned>(WebTouchEvent::touchesLengthCap) > touchPoints.size());
1063 touchEvent.touchesLength = touchPoints.size();
1064 for (unsigned i = 0; i < touchPoints.size(); ++i)
1065 touchEvent.touches[i] = touchPoints[i];
1068 for (unsigned i = 0; i < touchPoints.size(); ++i) {
1069 WebTouchPoint* touchPoint = &touchPoints[i];
1071 touchPoints.erase(touchPoints.begin() + i);