HomeSort by relevance Sort by last modified time
    Searched full:bottomright (Results 1 - 25 of 63) sorted by null

1 2 3

  /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();
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) {
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();
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...]
  /external/chromium/chrome/browser/ui/cocoa/
profile_menu_button_unittest.mm 79 NSPoint bottomRight = NSMakePoint(NSMaxX(mouseRect), NSMinY(mouseRect));
84 EXPECT_NSEQ([button_ hitTest:bottomRight], NULL);
91 EXPECT_NSEQ([button_ hitTest:bottomRight], NULL);
  /external/webkit/Source/WebCore/manual-tests/
scrollIntoView-horizontal.html 26 <input id="bottomleft" type="button" value="STEP 3: click to scroll STEP 4 to TOP of view" style="position: absolute; top: 1200px;" onclick="document.getElementById('bottomright').scrollIntoView(true);">
28 <input id="bottomright" type="button" value="STEP 4: click to scroll STEP 1 to TOP of view (then you're done)" style="position: absolute; top: 1200px; left: 1200px;" onclick="document.getElementById('topleft').scrollIntoView();">
  /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/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);
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_view.mm 43 NSPoint bottomRight =
56 [path lineToPoint:bottomRight];
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
HorizontalGravityTest.java 48 mBottomRight = activity.findViewById(R.id.bottomRight);
  /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);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
riva_mmio.h 175 U032 BottomRight;
181 U032 BottomRight;
187 U032 BottomRight;
197 U032 BottomRight;
208 U032 BottomRight;
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/
buildbot.css 149 -moz-border-radius-bottomright: 5px;
166 -moz-border-radius-bottomright: 5px;
273 -moz-border-radius-bottomright: 4px;
340 -moz-border-radius-bottomright: 10px;
default.css 177 -moz-border-radius-bottomright: 5px;
194 -moz-border-radius-bottomright: 5px;
301 -moz-border-radius-bottomright: 4px;
375 -moz-border-radius-bottomright: 10px;
  /frameworks/base/core/tests/coretests/res/layout/
table_layout_horizontal_gravity.xml 58 <TextView android:id="@+id/bottomRight"
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
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);
  /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));
  /external/webkit/Source/WebCore/rendering/style/
BorderData.h 112 const LengthSize& bottomRight() const { return m_bottomRight; }
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_view.mm     [all...]
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-properties/
mozilla 13 -moz-border-radius-bottomright
46 -moz-outline-radius-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/rendering/
RenderBoxModelObject.cpp     [all...]
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_cell.mm 381 NSPoint bottomRight = NSMakePoint(NSMaxX(rect) , NSMinY(rect));
389 toPoint:bottomRight
391 [path lineToPoint:bottomRight];
399 NSPoint bottomRight = NSMakePoint(NSMaxX(rect), NSMinY(rect));
403 [path appendBezierPathWithArcFromPoint:bottomRight

Completed in 731 milliseconds

1 2 3