Home | History | Annotate | Download | only in touch

Lines Matching refs:touch_id

269     details->last_start_time_[event.touch_id()] = event.time_stamp();
270 details->start_touch_position_[event.touch_id()] = event.root_location();
271 details->last_touch_position_[event.touch_id()] = event.location();
292 if (details->last_start_time_.count(event.touch_id())) {
294 details->last_start_time_[event.touch_id()];
302 details->start_touch_position_[event.touch_id()];
312 details->last_start_time_.erase(event.touch_id());
313 details->last_move_time_.erase(event.touch_id());
314 details->start_touch_position_.erase(event.touch_id());
315 details->last_touch_position_.erase(event.touch_id());
319 if (details->last_touch_position_.count(event.touch_id())) {
320 gfx::Point lastpos = details->last_touch_position_[event.touch_id()];
324 if (details->last_move_time_.count(event.touch_id())) {
326 details->last_move_time_[event.touch_id()];
334 details->last_move_time_[event.touch_id()] = event.time_stamp();
335 details->last_touch_position_[event.touch_id()] = event.location();