Searched refs:corner (Results 1 - 25 of 57) sorted by relevance

123

/external/eigen/Eigen/src/Eigen2Support/
H A DBlock.h16 /** \returns a dynamic-size expression of a corner of *this.
18 * \param type the type of corner. Can be \a Eigen::TopLeft, \a Eigen::TopRight,
20 * \param cRows the number of rows in the corner
21 * \param cCols the number of columns in the corner
34 ::corner(CornerType type, Index cRows, Index cCols) function in class:Eigen::DenseBase
39 eigen_assert(false && "Bad corner type.");
51 /** This is the const version of corner(CornerType, Index, Index).*/
54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const function in class:Eigen::DenseBase
59 eigen_assert(false && "Bad corner type.");
71 /** \returns a fixed-size expression of a corner o
86 DenseBase<Derived>::corner(CornerType type) function in class:Eigen::DenseBase
107 DenseBase<Derived>::corner(CornerType type) const function in class:Eigen::DenseBase
[all...]
/external/eigen/test/
H A Dgeo_alignedbox.cpp121 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeft ) );
122 VERIFY_IS_APPROX( M, box.corner( BoxType::TopRight ) );
125 VERIFY_IS_APPROX( bottomRight, box.corner( BoxType::BottomRight ) );
126 VERIFY_IS_APPROX( topLeft, box.corner( BoxType::TopLeft ) );
147 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeftFloor ) );
148 VERIFY_IS_APPROX( M, box.corner( BoxType::TopRightCeil ) );
151 VERIFY_IS_APPROX( bottomRightFloor, box.corner( BoxType::BottomRightFloor ) );
152 VERIFY_IS_APPROX( topLeftFloor, box.corner( BoxType::TopLeftFloor ) );
H A Deigen2support.cpp39 VERIFY_IS_EQUAL((m1.corner(TopLeft,1,1)), (m1.block(0,0,1,1)));
40 VERIFY_IS_EQUAL((m1.template corner<1,1>(TopLeft)), (m1.template block<1,1>(0,0)));
/external/chromium_org/third_party/skia/gm/
H A Dpatheffects.cpp20 SkPathEffect* corner = SkCornerPathEffect::Create(25); local
23 compose = SkComposePathEffect::Create(pe, corner);
24 corner->unref();
26 compose = corner;
/external/skia/gm/
H A Dpatheffects.cpp20 SkPathEffect* corner = SkCornerPathEffect::Create(25); local
23 compose = SkComposePathEffect::Create(pe, corner);
24 corner->unref();
26 compose = corner;
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dcomplex_rep.S2 # I thought up a lot of corner-cases in the rep code. This tries
/external/valgrind/main/exp-bbv/tests/x86/
H A Dcomplex_rep.S2 # I thought up a lot of corner-cases in the rep code. This tries
/external/chromium_org/chrome/browser/ui/views/message_center/
H A Dweb_notification_tray.cc112 // Gets the corner of the screen where the message center should pop up.
113 Alignment GetAnchorAlignment(const gfx::Rect& work_area, gfx::Point corner) { argument
117 center.y() > corner.y() ? ALIGNMENT_TOP : ALIGNMENT_BOTTOM;
120 (center.x() > corner.x() ? ALIGNMENT_LEFT : ALIGNMENT_RIGHT));
315 gfx::Point corner = internal::GetClosestCorner(work_area, mouse_click_point_); local
322 if (mouse_click_point_.y() > corner.y())
329 internal::GetAnchorAlignment(work_area, corner);
331 pos_info.inital_anchor_point = corner;
348 std::abs(mouse_click_point_.y() - corner.y()) + kMouseOffset;
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePathUtils.cpp69 SkAutoTUnref<SkCornerPathEffect> corner(SkCornerPathEffect::Create(.25f));
70 SkAutoTUnref<SkComposePathEffect> compose(SkComposePathEffect::Create(dash, corner));
/external/skia/samplecode/
H A DSamplePathUtils.cpp69 SkAutoTUnref<SkCornerPathEffect> corner(SkCornerPathEffect::Create(.25f));
70 SkAutoTUnref<SkComposePathEffect> compose(SkComposePathEffect::Create(dash, corner));
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.h17 // the corner of a display. This class does not impose any particular policy for
20 // the cursor versus the corner of the shelf. This class just performs the
57 // Finds the position for a window to anchor it to a corner of the screen.
58 // |corner| specifies which corner to anchor the window to. Returns the
62 gfx::Point GetAnchorPointForScreenCorner(ScreenCorner corner) const;
68 // Finds the position for a window to anchor it to the corner of the shelf.
H A Dapp_list_positioner.cc40 ScreenCorner corner) const {
43 switch (corner) {
/external/clang/docs/tools/
H A Dmanpage.css223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y;
227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y;
231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x;
235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x;
239 background: #ffffff url(/i/corner-rightline.gif) repeat-y;
243 background: #ffffff url(/i/corner-topline.gif) repeat-x;
247 background: #ffffff url(/i/corner-botline.gif) repeat-x;
255 background: #ffffff url(/i/corner-leftline.gif) repeat-y;
/external/chromium_org/cc/resources/
H A Dpicture_pile_unittest.cc565 static gfx::Rect CornerSinglePixelRect(Corner corner, const gfx::Size& s) { argument
566 switch (corner) {
582 Corner corner = GetParam(); local
618 CornerSinglePixelRect(corner, grow_down_tiling_size));
647 CornerSinglePixelRect(corner, base_tiling_size));
659 switch (corner) {
684 switch (corner) {
707 CornerSinglePixelRect(corner, grow_right_tiling_size));
737 CornerSinglePixelRect(corner, base_tiling_size));
749 switch (corner) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.cpp636 // and a line perpendicular to it that intersects the corner.
639 // Compute start corner relative to center, in Cartesian space (+y = up).
652 // Compute c (of y = mx + c) using the corner point.
931 static float distanceToClosestCorner(const FloatPoint& p, const FloatSize& size, FloatPoint& corner) argument
945 corner = topLeft;
949 corner = topRight;
954 corner = bottomLeft;
959 corner = bottomRight;
964 static float distanceToFarthestCorner(const FloatPoint& p, const FloatSize& size, FloatPoint& corner) argument
978 corner
1098 FloatPoint corner; local
1115 FloatPoint corner; local
1140 FloatPoint corner; local
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkRRect.h38 radii for each corner. It does not have a constructor so must be
44 If either of a corner's radii are 0 the corner will be square.
46 If the corner curves overlap they will be proportionally reduced to fit.
62 //!< at each corner is zero)
77 //!< because the centers of the corner ellipses form an axis aligned
79 //!< an interior patch, four edge patches, and four corner patches.
83 //!< different from the others and there must be one corner where
192 const SkVector& radii(Corner corner) const { return fRadii[corner]; }
[all...]
/external/skia/include/core/
H A DSkRRect.h38 radii for each corner. It does not have a constructor so must be
44 If either of a corner's radii are 0 the corner will be square.
46 If the corner curves overlap they will be proportionally reduced to fit.
62 //!< at each corner is zero)
77 //!< because the centers of the corner ellipses form an axis aligned
79 //!< an interior patch, four edge patches, and four corner patches.
83 //!< different from the others and there must be one corner where
192 const SkVector& radii(Corner corner) const { return fRadii[corner]; }
[all...]
/external/chromium_org/chrome/browser/apps/
H A Dweb_view_interactive_browsertest.cc340 gfx::Point corner() { function in class:WebViewInteractiveTest
560 gfx::Point(corner().x() + 75, corner().y() + 25)));
575 gfx::Point(corner().x() + 74, corner().y() + 74)));
610 gfx::Point(corner().x() + 50, corner().y() + 10)));
621 gfx::Point(corner().x() + 51, corner().y() + 11)));
633 gfx::Point(corner()
[all...]
/external/chromium_org/ui/gfx/
H A Dtransform.cc458 for (int corner = 0; corner < 8; ++corner) {
460 point += gfx::Vector3dF(corner & 1 ? box->width() : 0.f,
461 corner & 2 ? box->height() : 0.f,
462 corner & 4 ? box->depth() : 0.f);
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h100 /** \returns the minimal corner */
102 /** \returns a non const reference to the minimal corner */
104 /** \returns the maximal corner */
106 /** \returns a non const reference to the maximal corner */
133 /** \returns the vertex of the bounding box at the corner defined by
134 * the corner-id corner. It works only for a 1D, 2D or 3D bounding box.
142 inline VectorType corner(CornerType corner) const function in class:Eigen::AlignedBox
151 if( mult & corner ) re
[all...]
/external/opencv/cv/src/
H A Dcvcalibinit.cpp43 This is improved variant of chessboard corner detection algorithm that
98 /** This structure stores information about the chessboard corner.*/
101 CvPoint2D32f pt; // Coordinates of the corner
118 // neighbors and corners are synced, i.e., neighbor 0 shares corner 0
151 static void icvOrderQuad(CvCBQuad *quad, CvCBCorner *corner, int common);
488 // for each corner c lying between end points in the same row/column it checks that
535 // can add quads, so we need to have quad/corner arrays passed in
578 // 0,1,2,3) are in the at the same relative corner (e.g., lower right).
808 CvCBCorner* corner; local
813 corner
986 icvOrderQuad(CvCBQuad *quad, CvCBCorner *corner, int common) argument
1719 CvCBCorner* corner = &(*out_corners)[quad_count*4 + i]; local
1945 CvCBCorner* corner = &(*out_corners)[quad_count*4 + i]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.cpp280 // We have a scrollbar corner when a scrollbar is visible and not filling the entire length of the box.
901 // Destroying or creating one bar can cause our scrollbar corner to come and go. We need to update the opposite scrollbar's style.
925 // Destroying or creating one bar can cause our scrollbar corner to come and go. We need to update the opposite scrollbar's style.
990 RefPtr<RenderStyle> corner = box().hasOverflowClip() ? actualRenderer->getUncachedPseudoStyle(PseudoStyleRequest(SCROLLBAR_CORNER), actualRenderer->style()) : PassRefPtr<RenderStyle>(nullptr); local
991 if (corner) {
996 m_scrollCorner->setStyle(corner.release());
1057 // We fill our scroll corner with white if we have a scrollbar that doesn't run all the way up to the
1061 // Paint our resizer last, since it sits on top of the scroll corner.
1128 IntRect corner = cornerRect(box().style(), horizontalScrollbar(), verticalScrollbar(), bounds);
1136 corner
[all...]
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_copy_sub_buffer.spec68 <x> and <y> indicates the lower-left corner of the region to copy and
/external/mesa3d/docs/
H A DMESA_copy_sub_buffer.spec68 <x> and <y> indicates the lower-left corner of the region to copy and
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperations.cpp348 FloatPoint3D corner(fromBox.x(), fromBox.y(), fromBox.z());
349 corner += FloatPoint3D(i * fromBox.width(), j * fromBox.height(), k * fromBox.depth());
350 boundingBoxForArc(corner, *fromRotation, *toRotation, minProgress, maxProgress, boundsForArc);

Completed in 574 milliseconds

123