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

1 2

  /external/chromium_org/ui/chromeos/
touch_exploration_controller.cc 89 const int touch_id = touch_event.touch_id(); local
94 current_touch_ids_.push_back(touch_id);
95 touch_locations_.insert(std::pair<int, gfx::PointF>(touch_id, location));
98 current_touch_ids_.begin(), current_touch_ids_.end(), touch_id);
105 touch_locations_.erase(touch_id);
108 current_touch_ids_.begin(), current_touch_ids_.end(), touch_id);
211 event.touch_id(),
243 initial_press_->touch_id(),
266 event.touch_id(),
450 const int touch_id = touch_event.touch_id(); local
    [all...]
touch_exploration_controller_unittest.cc 175 EXPECT_EQ(touch_event1->touch_id(), touch_event2->touch_id());
541 EXPECT_EQ(2, static_cast<ui::TouchEvent*>(captured_events[0])->touch_id());
550 EXPECT_EQ(2, static_cast<ui::TouchEvent*>(captured_events[0])->touch_id());
564 EXPECT_EQ(2, static_cast<ui::TouchEvent*>(captured_events[0])->touch_id());
    [all...]
  /external/chromium_org/ash/touch/
touch_uma.cc 292 details->last_start_time_[event.touch_id()] = event.time_stamp();
293 details->start_touch_position_[event.touch_id()] = event.root_location();
294 details->last_touch_position_[event.touch_id()] = event.location();
322 if (details->last_start_time_.count(event.touch_id())) {
324 details->last_start_time_[event.touch_id()];
332 details->start_touch_position_[event.touch_id()];
342 details->last_start_time_.erase(event.touch_id());
343 details->last_move_time_.erase(event.touch_id());
344 details->start_touch_position_.erase(event.touch_id());
345 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/events/gestures/
gesture_point.h 72 void set_touch_id(int touch_id) { touch_id_ = touch_id; }
73 int touch_id() const { return touch_id_; } function in class:ui::GesturePoint
motion_event_aura.cc 40 point_data.touch_id = touch.touch_id();
96 return active_touches_[pointer_index].touch_id;
187 int index_to_delete = static_cast<int>(GetIndexFromId(event.touch_id()));
197 touch_id(0),
218 active_touches_[GetIndexFromId(touch.touch_id())] =
231 static_cast<int>(GetIndexFromId(touch.touch_id()));
240 static_cast<int>(GetIndexFromId(touch.touch_id()));
258 if (active_touches_[i].touch_id == id)
gesture_sequence.cc 71 // touch_id, ui::EventType, touch_handled), see Signature for more info.
318 // 12 bits for |touch_id|
321 unsigned int touch_id,
324 CHECK((touch_id & 0xfff) == touch_id);
327 (G(gesture_state, touch_id, touch_state, touch_status));
425 touch_bitmask |= 1 << points[i].touch_id();
505 if (event.touch_id() >= kMaxGesturePoints)
511 GesturePoint* new_point = &points_[event.touch_id()];
516 LOG(ERROR) << "Received a second press for a point: " << event.touch_id();
    [all...]
gesture_recognizer_impl.cc 85 return touch_id_target_[event.touch_id()];
91 int touch_id = event.GetLowestTouchId(); local
92 target = touch_id_target_for_gestures_[touch_id];
124 return touch_id_target_[closest_point->touch_id()];
259 touch_id_target_.erase(event.touch_id());
261 touch_id_target_[event.touch_id()] = target;
263 touch_id_target_for_gestures_[event.touch_id()] = target;
270 int touch_id = touches->begin()->first; local
273 ui::EF_IS_SYNTHESIZED, touch_id,
motion_event_aura.h 73 int touch_id; member in struct:ui::MotionEventAura::PointData
gesture_provider_aura.cc 28 if (event.touch_id() != pointer_state_.GetPointerId(i))
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev_unittest.cc 182 EXPECT_EQ(0, event->touch_id());
229 EXPECT_EQ(0, event->touch_id());
243 EXPECT_EQ(0, event->touch_id());
280 EXPECT_EQ(0, event->touch_id());
331 EXPECT_EQ(0, ev0->touch_id());
340 EXPECT_EQ(1, ev1->touch_id());
357 EXPECT_EQ(1, ev1->touch_id());
376 EXPECT_EQ(0, ev0->touch_id());
395 EXPECT_EQ(0, ev0->touch_id());
403 EXPECT_EQ(1, ev1->touch_id());
    [all...]
  /external/chromium_org/mojo/services/public/cpp/input_events/lib/
input_events_type_converters.cc 32 touch_data->pointer_id = touch_event->touch_id();
  /external/chromium_org/ui/aura/test/
event_generator.h 186 // Generates a touch press event with |touch_id|.
187 void PressTouchId(int touch_id);
192 // Generates a ET_TOUCH_MOVED event to |point| with |touch_id|.
193 void MoveTouchId(const gfx::Point& point, int touch_id);
198 // Generates a touch release event with |touch_id|.
199 void ReleaseTouchId(int touch_id);
event_generator.cc 72 int touch_id,
75 : TouchEvent(type, root_location, flags, touch_id, timestamp,
226 void EventGenerator::PressTouchId(int touch_id) {
228 ui::ET_TOUCH_PRESSED, GetLocationInCurrentRoot(), touch_id, flags_,
237 void EventGenerator::MoveTouchId(const gfx::Point& point, int touch_id) {
240 ui::ET_TOUCH_MOVED, GetLocationInCurrentRoot(), touch_id, flags_,
252 void EventGenerator::ReleaseTouchId(int touch_id) {
254 ui::ET_TOUCH_RELEASED, GetLocationInCurrentRoot(), touch_id, flags_,
  /external/chromium_org/ui/events/
event.h 469 int touch_id,
475 int touch_id,
484 int touch_id() const { return touch_id_; } function in class:ui::TouchEvent
event.cc 463 int touch_id,
466 touch_id_(touch_id),
478 int touch_id,
485 touch_id_(touch_id),
  /external/chromium_org/ui/events/ozone/
events_ozone.cc 88 return event->touch_id();
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.cc 273 point->id = event.touch_id();
285 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/ash/wm/
system_gesture_event_filter_unittest.cc 168 int touch_id) {
171 ui::GestureEventDetails(type, delta_x, delta_y), 1 << touch_id);
  /external/chromium_org/ash/host/
ash_window_tree_host_x11_unittest.cc 36 last_touch_id_ = event->touch_id();
  /external/chromium_org/ui/aura/
window_event_dispatcher.cc 834 touch_ids_down_ |= (1 << event->touch_id());
844 touch_ids_down_ = (touch_ids_down_ | (1 << event->touch_id())) ^
845 (1 << event->touch_id());

Completed in 318 milliseconds

1 2