HomeSort by relevance Sort by last modified time
    Searched refs:touch_id (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/ash/touch/
touch_uma.cc 141 details->last_start_time_[event.touch_id()] = event.time_stamp();
142 details->start_touch_position_[event.touch_id()] = event.root_location();
143 details->last_touch_position_[event.touch_id()] = event.location();
164 if (details->last_start_time_.count(event.touch_id())) {
166 details->last_start_time_[event.touch_id()];
172 details->start_touch_position_[event.touch_id()];
182 details->last_start_time_.erase(event.touch_id());
183 details->last_move_time_.erase(event.touch_id());
184 details->start_touch_position_.erase(event.touch_id());
185 details->last_touch_position_.erase(event.touch_id());
    [all...]
touch_hud_debug.cc 101 : id(touch.touch_id()),
210 int GetTraceIndex(int touch_id) const {
211 return touch_id_to_trace_index_.at(touch_id);
228 int touch_id = touch.touch_id(); local
230 touch_id_to_trace_index_[touch_id] = next_trace_index_;
235 int touch_id = touch.touch_id(); local
236 int trace_index = touch_id_to_trace_index_[touch_id];
273 void TouchPointAdded(int touch_id) {
    [all...]
touch_hud_projection.cc 157 points_.insert(std::make_pair(event->touch_id(), point));
166 points_.find(event->touch_id());
touch_observer_hud_unittest.cc 295 int touch_id) {
296 ui::TouchEvent event(type, location, touch_id, event_time);
  /external/chromium_org/ui/chromeos/
touch_exploration_controller.cc 93 const int touch_id = touch_event.touch_id(); local
98 current_touch_ids_.push_back(touch_id);
99 touch_locations_.insert(std::pair<int, gfx::PointF>(touch_id, location));
102 current_touch_ids_.begin(), current_touch_ids_.end(), touch_id);
109 touch_locations_.erase(touch_id);
112 current_touch_ids_.begin(), current_touch_ids_.end(), touch_id);
223 initial_presses_[event.touch_id()] = event.location();
239 if (event.touch_id() == initial_press_->touch_id() && !in_a_bottom_corner)
1066 const int touch_id = touch_event.touch_id(); local
    [all...]
touch_exploration_controller_unittest.cc 431 EXPECT_EQ(touch_event1->touch_id(), touch_event2->touch_id());
    [all...]
  /external/chromium_org/ui/events/gestures/
motion_event_aura.cc 47 point_data.touch_id = touch.touch_id();
126 return active_touches_[pointer_index].touch_id;
207 int index_to_delete = static_cast<int>(GetIndexFromId(event.touch_id()));
217 touch_id(0),
240 active_touches_[GetIndexFromId(touch.touch_id())] =
253 static_cast<int>(GetIndexFromId(touch.touch_id()));
262 static_cast<int>(GetIndexFromId(touch.touch_id()));
280 if (active_touches_[i].touch_id == id)
gesture_recognizer_impl.cc 81 return touch_id_target_[event.touch_id()];
87 int touch_id = event.details().oldest_touch_id(); local
88 target = touch_id_target_for_gestures_[touch_id];
220 touch_id_target_.erase(event.touch_id());
222 touch_id_target_[event.touch_id()] = target;
224 touch_id_target_for_gestures_[event.touch_id()] = target;
motion_event_aura.h 64 int touch_id; member in struct:ui::MotionEventAura::PointData
gesture_provider_aura.cc 26 int index = pointer_state_.FindPointerIndexOfId(event.touch_id());
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev_unittest.cc 183 EXPECT_EQ(0, event->touch_id());
231 EXPECT_EQ(0, event->touch_id());
245 EXPECT_EQ(0, event->touch_id());
282 EXPECT_EQ(0, event->touch_id());
333 EXPECT_EQ(0, ev0->touch_id());
342 EXPECT_EQ(1, ev1->touch_id());
359 EXPECT_EQ(1, ev1->touch_id());
378 EXPECT_EQ(0, ev0->touch_id());
397 EXPECT_EQ(0, ev0->touch_id());
405 EXPECT_EQ(1, ev1->touch_id());
    [all...]
  /external/chromium_org/ash/system/web_notification/
web_notification_tray_unittest.cc 495 const int touch_id = 0; local
498 ui::TouchEvent press(ui::ET_TOUCH_PRESSED, center_point, touch_id,
504 ui::TouchEvent release(ui::ET_TOUCH_RELEASED, center_point, touch_id,
528 const int touch_id = 0; local
532 ui::TouchEvent press(ui::ET_TOUCH_PRESSED, center_point, touch_id,
539 ui::TouchEvent move(ui::ET_TOUCH_MOVED, out_of_bounds, touch_id,
545 ui::TouchEvent release(ui::ET_TOUCH_RELEASED, out_of_bounds, touch_id,
  /external/chromium_org/ui/events/test/
event_generator.cc 47 int touch_id,
50 : TouchEvent(type, root_location, flags, touch_id, timestamp,
206 void EventGenerator::PressTouchId(int touch_id) {
208 ui::ET_TOUCH_PRESSED, GetLocationInCurrentRoot(), touch_id, flags_,
217 void EventGenerator::MoveTouchId(const gfx::Point& point, int touch_id) {
220 ui::ET_TOUCH_MOVED, GetLocationInCurrentRoot(), touch_id, flags_,
232 void EventGenerator::ReleaseTouchId(int touch_id) {
234 ui::ET_TOUCH_RELEASED, GetLocationInCurrentRoot(), touch_id, flags_,
event_generator.h 205 // Generates a touch press event with |touch_id|.
206 void PressTouchId(int touch_id);
211 // Generates a ET_TOUCH_MOVED event to |point| with |touch_id|.
212 void MoveTouchId(const gfx::Point& point, int touch_id);
217 // Generates a touch release event with |touch_id|.
218 void ReleaseTouchId(int touch_id);
  /external/chromium_org/ui/events/
event.h 498 int touch_id,
504 int touch_id,
513 int touch_id() const { return touch_id_; } function in class:ui::TouchEvent
event.cc 526 int touch_id,
529 touch_id_(touch_id),
540 int touch_id,
547 touch_id_(touch_id),
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.cc 255 point->id = event.touch_id();
267 if (point->id == event.touch_id())
  /external/chromium_org/ppapi/api/
ppb_input_event.idl     [all...]
  /external/chromium_org/ppapi/c/
ppb_input_event.h     [all...]
  /external/chromium_org/ui/events/ozone/
events_ozone.cc 99 return event->touch_id();
  /external/chromium_org/ash/wm/
system_gesture_event_filter_unittest.cc 170 int touch_id) {
173 details.set_oldest_touch_id(touch_id);
  /external/chromium_org/ash/host/
ash_window_tree_host_x11_unittest.cc 36 last_touch_id_ = event->touch_id();
  /external/chromium_org/mojo/services/public/cpp/input_events/lib/
input_events_type_converters.cc 117 touch_data->pointer_id = touch_event->touch_id();
  /external/chromium_org/ui/aura/
window_event_dispatcher.cc 879 touch_ids_down_ |= (1 << event->touch_id());
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
input_router_impl_unittest.cc 112 if (first.touch_id() != second.touch_id())
    [all...]

Completed in 826 milliseconds

1 2