HomeSort by relevance Sort by last modified time
    Searched refs:bottomRight (Results 1 - 25 of 43) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.h 40 Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
44 , m_bottomRight(bottomRight)
55 const IntSize& bottomRight() const { return m_bottomRight; }
77 RoundedIntRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
105 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight();
RoundedIntRect.cpp 93 m_bottomRight = edges.bottomRight();
127 RoundedIntRect::RoundedIntRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
129 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
146 && m_radii.bottomLeft().width() + m_radii.bottomRight().width() <= m_rect.width()
148 && m_radii.bottomLeft().height() + m_radii.bottomRight().height() <= m_rect.height();
TiledBackingStore.cpp 77 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
79 for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
80 for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
136 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
138 for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
139 for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
233 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(coverRect.maxX(), coverRect.maxY()));
234 for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
235 for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
ShadowBlur.cpp 424 rightSlice = twiceRadius + max(radii.topRight().width(), radii.bottomRight().width());
427 bottomSlice = twiceRadius + max(radii.bottomLeft().height(), radii.bottomRight().height());
516 path.addRoundedRect(shadowedRect, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
557 path.addRoundedRect(holeRect, holeRadii.topLeft(), holeRadii.topRight(), holeRadii.bottomLeft(), holeRadii.bottomRight());
636 path.addRoundedRect(templateHole, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
698 path.addRoundedRect(templateShadow, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_pic_param_set.h 56 u32 *bottomRight;
h264bsd_slice_group_map.c 74 u32 *bottomRight,
213 bottomRight bottom_right[] values
229 u32 *bottomRight,
244 ASSERT(bottomRight);
255 ASSERT( topLeft[group] <= bottomRight[group] &&
256 bottomRight[group] < picSize );
259 yBottomRight = bottomRight[group] / picWidth;
260 xBottomRight = bottomRight[group] % picWidth;
559 pps->topLeft, pps->bottomRight, picWidth, picHeight);
h264bsd_storage.c 245 FREE(pStorage->pps[id]->bottomRight);
254 FREE(pStorage->pps[id]->bottomRight);
817 ASSERT(pps->bottomRight);
820 if (pps->topLeft[i] > pps->bottomRight[i] ||
821 pps->bottomRight[i] >= picSize)
825 (pps->bottomRight[i] % sps->picWidthInMbs) )
h264bsd_pic_param_set.c 181 ALLOCATE(pPicParamSet->bottomRight,
184 pPicParamSet->bottomRight == NULL)
195 pPicParamSet->bottomRight[i] = value;
h264bsd_decoder.c 292 FREE(picParamSet.bottomRight);
560 FREE(pStorage->pps[i]->bottomRight);
  /external/webkit/Source/WebCore/platform/graphics/filters/
FELighting.cpp 74 int bottomRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
75 normalVector.setX(-(center << 1) + (right << 1) - bottom + bottomRight);
76 normalVector.setY(-(center << 1) - right + (bottom << 1) + bottomRight);
87 int bottomRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
88 normalVector.setX(-(left << 1) + (right << 1) - bottomLeft + bottomRight);
89 normalVector.setY(-left - (center << 1) - right + bottomLeft + (bottom << 1) + bottomRight);
112 int bottomRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
113 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
114 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight);
128 int bottomRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset))
    [all...]
FELighting.h 70 inline void bottomRight(int offset, IntPoint& normalVector);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 80 ControlPoint bottomRight = LayoutPoint.create(mCanvas, mask.x + mask.width,
84 int x2 = bottomRight.x;
85 int y2 = bottomRight.y;
MarqueeGesture.java 81 LayoutPoint bottomRight = ControlPoint.create(mCanvas, x + w, y + h).toLayout();
82 mCanvas.getSelectionManager().selectWithin(topLeft, bottomRight, mInitialSelection);
ViewHierarchy.java 373 * @param bottomRight The bottom right corner of the selection rectangle.
379 LayoutPoint bottomRight) {
380 Rectangle selectionRectangle = new Rectangle(topLeft.x, topLeft.y, bottomRight.x
381 - topLeft.x, bottomRight.y - topLeft.y);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
HorizontalGravityTest.java 48 mBottomRight = activity.findViewById(R.id.bottomRight);
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 239 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
245 for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
246 for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
337 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
339 for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
340 for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
437 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(visibleRect.maxX(), visibleRect.maxY()));
438 for (unsigned yCoordinate = topLeft.y(); yCoordinate <= bottomRight.y(); ++yCoordinate) {
439 for (unsigned xCoordinate = topLeft.x(); xCoordinate <= bottomRight.x(); ++xCoordinate) {
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 101 void drawRoundedRect(const FloatRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
GraphicsContextOpenVG.cpp 176 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
183 m_data->drawRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight, VG_FILL_PATH);
  /external/webkit/Source/WebCore/rendering/style/
BorderData.h 112 const LengthSize& bottomRight() const { return m_bottomRight; }
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 194 Float3 bottomRight = new Float3(1.0f, -1.0f, 0.0f);
205 fullQuad.set_position(3, bottomRight, false);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 656 FloatPoint bottomRight(size.width(), size.height());
657 float bottomRightDistance = FloatSize(p - bottomRight).diagonalLength();
673 corner = bottomRight;
689 FloatPoint bottomRight(size.width(), size.height());
690 float bottomRightDistance = FloatSize(p - bottomRight).diagonalLength();
706 corner = bottomRight;
    [all...]
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 326 final int bottomRight = selectorRight;
334 canvas.clipRect(bottomLeft, bottomTop, bottomRight, bottomBottom);
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 136 SkPoint bottomright = {rc.fRight, rc.fBottom}; local
137 return isPointSkiaSafe(transform, topleft) && isPointSkiaSafe(transform, bottomright);
825 const IntSize& bottomRight,
840 || bottomLeft.width() + bottomRight.width() > rect.width()
842 || topRight.height() + bottomRight.height() > rect.height()) {
852 addCornerArc(&path, r, bottomRight, 0);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 747 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
768 contextShadow.drawRectShadow(this, rect, RoundedIntRect::Radii(topLeft, topRight, bottomLeft, bottomRight));
771 bool equalWidths = (topLeft.width() == topRight.width() && topRight.width() == bottomLeft.width() && bottomLeft.width() == bottomRight.width());
772 bool equalHeights = (topLeft.height() == bottomLeft.height() && bottomLeft.height() == topRight.height() && topRight.height() == bottomRight.height());
777 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
    [all...]

Completed in 661 milliseconds

1 2