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 37 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 327 const gfx::RectF bounding_box = GetBoundingBox(e2, scroll_details.type()); variable
328 const gfx::PointF center = bounding_box.CenterPoint();
340 bounding_box,
499 const gfx::RectF& bounding_box,
510 bounding_box,
523 const gfx::RectF& bounding_box,
534 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::__anon283::GestureEventConsumeDelegate
201 bounding_box_ = gesture->details().bounding_box();
745 EXPECT_EQ(24, delegate->bounding_box().width());
746 EXPECT_EQ(24, delegate->bounding_box().height());
786 EXPECT_EQ(40, delegate->bounding_box().width());
787 EXPECT_EQ(40, delegate->bounding_box().height());
843 EXPECT_EQ(16, delegate->bounding_box().width());
844 EXPECT_EQ(16, delegate->bounding_box().height());
929 EXPECT_EQ(18, delegate->bounding_box().width());
930 EXPECT_EQ(18, delegate->bounding_box().height())
    [all...]

Completed in 95 milliseconds