Home | History | Annotate | Download | only in chromeos

Lines Matching defs:touch_event

69   const ui::TouchEvent& touch_event = static_cast<const ui::TouchEvent&>(event);
76 touch_event.time_stamp() - initial_press_->time_stamp() >
91 const ui::EventType type = touch_event.type();
92 const gfx::PointF& location = touch_event.location_f();
93 const int touch_id = touch_event.touch_id();
123 VLOG_EVENT(touch_event);
128 FindEdgesWithinBounds(touch_event.location(), kLeavingScreenEdge) !=
152 gesture_provider_->OnTouchEvent(touch_event);
160 return InNoFingersDown(touch_event, rewritten_event);
162 return InSingleTapPressed(touch_event, rewritten_event);
165 return InSingleTapOrTouchExploreReleased(touch_event, rewritten_event);
167 return InDoubleTapPending(touch_event, rewritten_event);
169 return InTouchReleasePending(touch_event, rewritten_event);
171 return InTouchExploration(touch_event, rewritten_event);
173 return InGestureInProgress(touch_event, rewritten_event);
175 return InTouchExploreSecondPress(touch_event, rewritten_event);
177 return InSlideGesture(touch_event, rewritten_event);
179 return InOneFingerPassthrough(touch_event, rewritten_event);
181 return InCornerPassthrough(touch_event, rewritten_event);
183 return InWaitForNoFingers(touch_event, rewritten_event);
185 return InTwoFingerTap(touch_event, rewritten_event);
1045 void TouchExplorationController::VlogEvent(const ui::TouchEvent& touch_event,
1051 prev_event_->type() == touch_event.type() &&
1052 prev_event_->touch_id() == touch_event.touch_id()){
1060 touch_event.type() == ET_TOUCH_MOVED){
1064 const std::string& type = touch_event.name();
1065 const gfx::PointF& location = touch_event.location_f();
1066 const int touch_id = touch_event.touch_id();
1072 prev_event_.reset(new TouchEvent(touch_event));