/external/chromium_org/ui/events/gestures/ |
gesture_sequence.h | 65 int point_count() const { return point_count_; } 233 int point_count_; member in class:ui::GestureSequence
|
gesture_sequence.cc | 488 point_count_(0), 509 if (point_count_ == kMaxGesturePoints) 521 new_point->set_point_id(point_count_++); 704 for (int i = 0; i < point_count_; ++i) 722 if (point_count_ == 2) { 771 --point_count_; 772 CHECK_GE(point_count_, 0); 787 if (point_count_ == 0) { 789 } else if (point_count_ == 1) { 875 gesture_details.set_touch_points(point_count_); [all...] |
/external/chromium_org/native_client_sdk/src/examples/demo/voronoi/ |
voronoi.cc | 144 int point_count_; member in class:Voronoi 174 point_count_(kStartPointCount), draw_points_(true), draw_interiors_(true), 202 for (int i = 0; i < point_count_; ++i) { 403 for (int i = 0; i < point_count_; i++) { 483 point_count_ = std::min(kMaxPointCount, std::max(0, num_points));
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/ |
voronoi.cc | 136 int point_count_; member in class:Voronoi 163 point_count_(kStartPointCount), draw_points_(true), draw_interiors_(true) { 191 for (int i = 0; i < point_count_; ++i) { 400 for (int i = 0; i < point_count_; i++) { 452 point_count_ = std::min(kMaxPointCount, std::max(0, num_points));
|