HomeSort by relevance Sort by last modified time
    Searched refs:points_ (Results 1 - 8 of 8) sorted by null

  /frameworks/base/media/mca/filterfw/native/core/
geometry.h 53 Quad() : points_(4) {}
57 : points_(4) {
58 points_[0] = p0;
59 points_[1] = p1;
60 points_[2] = p2;
61 points_[3] = p3;
64 const std::vector<Point>& points() const { return points_; }
68 std::vector<Point> points_; member in class:android::filterfw::Quad
geometry.cpp 132 ALOG_ASSERT(ix < static_cast<int>(points_.size()), "Access out of bounds");
133 return points_[ix];
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 53 Quad() : points_(4) {}
57 : points_(4) {
58 points_[0] = p0;
59 points_[1] = p1;
60 points_[2] = p2;
61 points_[3] = p3;
64 const std::vector<Point>& points() const { return points_; }
68 std::vector<Point> points_; member in class:android::filterfw::Quad
geometry.cpp 131 ALOG_ASSERT(ix < static_cast<int>(points_.size()), "Access out of bounds");
132 return points_[ix];
148 points_[0] = center - dx - dy;
149 points_[1] = center + dx - dy;
150 points_[2] = center - dx + dy;
151 points_[3] = center + dx + dy;
  /external/chromium_org/ash/touch/
touch_hud_projection.h 36 std::map<int, TouchPointView*> points_; member in class:ash::internal::TouchHudProjection
touch_hud_projection.cc 146 for (std::map<int, TouchPointView*>::iterator iter = points_.begin();
147 iter != points_.end(); iter++)
149 points_.clear();
157 points_.insert(std::make_pair(event->touch_id(), point));
166 points_.find(event->touch_id());
167 if (iter != points_.end()) {
171 points_.erase(iter);
  /external/chromium_org/ui/base/gestures/
gesture_sequence.cc 359 GesturePoint* new_point = &points_[event.touch_id()];
547 GesturePoint& iter_point = points_[i];
582 if (!points_[i].in_use())
588 const gfx::Point& point = points_[i].last_touch_position();
600 if (points_[i].in_use())
601 points_[i].ResetVelocity();
623 return points_[event.touch_id()];
629 GesturePoint& point = points_[i];
815 ComputeTouchBitmask(points_)));
853 ComputeTouchBitmask(points_)));
    [all...]
gesture_sequence.h 50 const GesturePoint* points() const { return points_; }
68 // Do a linear scan through points_ to find the GesturePoint
211 GesturePoint points_[kMaxGesturePoints]; member in class:ui::GestureSequence

Completed in 505 milliseconds