HomeSort by relevance Sort by last modified time
    Searched defs:bounding_box (Results 1 - 6 of 6) sorted by null

  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 10 Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point function in namespace:Eigen::internal
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view_layout.cc 213 gfx::Rect bounding_box = contents_container_->ConvertRectToWidget( local
234 // Grow the height of |bounding_box| by the height of any elements between
237 int height_delta = bounding_box.y() - find_bar_y;
238 bounding_box.set_y(find_bar_y);
239 bounding_box.set_height(std::max(0, bounding_box.height() + height_delta));
244 bounding_box.set_width(std::max(0, bounding_box.width() - scrollbar_width));
246 bounding_box.set_x(bounding_box.x() + scrollbar_width)
    [all...]
  /external/chromium_org/ui/events/
gesture_event_details.h 30 const gfx::Rect bounding_box() const { function in struct:ui::GestureEventDetails
  /external/eigen/unsupported/test/
BVH.cpp 17 template<typename Scalar, int Dim> AlignedBox<Scalar, Dim> bounding_box(const Matrix<Scalar, Dim, 1> &v) { return AlignedBox<Scalar, Dim>(v); } function in namespace:Eigen
35 template<int Dim> AlignedBox<double, Dim> bounding_box(const Ball<Dim> &b) function
  /external/chromium_org/ui/events/gesture_detection/
gesture_provider.cc 53 const gfx::RectF& bounding_box) {
62 bounding_box);
73 const gfx::RectF& bounding_box) {
82 bounding_box);
356 const gfx::RectF bounding_box = GetBoundingBox(e2); variable
357 const gfx::PointF center = bounding_box.CenterPoint();
370 bounding_box));
765 const gfx::RectF bounding_box = GetBoundingBox(event); local
777 bounding_box));
  /external/chromium_org/ui/aura/gestures/
gesture_recognizer_unittest.cc 188 const gfx::Rect& bounding_box() const { return bounding_box_; } function in class:aura::test::__anon20461::GestureEventConsumeDelegate
201 bounding_box_ = gesture->details().bounding_box();
808 EXPECT_EQ(24, delegate->bounding_box().width());
809 EXPECT_EQ(24, delegate->bounding_box().height());
849 EXPECT_EQ(40, delegate->bounding_box().width());
850 EXPECT_EQ(40, delegate->bounding_box().height());
906 EXPECT_EQ(25, delegate->bounding_box().width());
907 EXPECT_EQ(24, delegate->bounding_box().height());
992 EXPECT_EQ(33, delegate->bounding_box().width());
993 EXPECT_EQ(32, delegate->bounding_box().height())
    [all...]

Completed in 185 milliseconds