HomeSort by relevance Sort by last modified time
    Searched defs:addRect (Results 1 - 25 of 30) sorted by null

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 92 p.addRect(new RectF(-SQUARE, -SQUARE, SQUARE, SQUARE), Direction.CCW);
PathTest.java 63 method = "addRect",
78 path.addRect(rect, Path.Direction.CW);
85 method = "addRect",
100 path.addRect(LEFT, TOP, RIGHT, BOTTOM, Path.Direction.CW);
374 method = "addRect",
385 path.addRect(bounds, Path.Direction.CW);
713 method = "addRect",
802 path.addRect(rect, Path.Direction.CW);
CanvasTest.java     [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 119 void Path::addRect(const FloatRect& r)
  /external/webkit/WebCore/platform/graphics/wince/
PathWince.cpp 106 void Path::addRect(const FloatRect& r)
108 m_path->addRect(r);
PlatformPathWince.cpp 740 void PlatformPath::addRect(const FloatRect& r)
  /external/webkit/WebCore/platform/graphics/wx/
PathWx.cpp 189 void Path::addRect(const FloatRect& rect)
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 93 mPath.addRect(r, Path.Direction.CW);
103 mPath.addRect(mInnerRect, Path.Direction.CCW);
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 205 void Path::addRect(const FloatRect& rect)
207 m_path->addRect(rect);
  /external/webkit/WebCore/platform/graphics/cairo/
PathCairo.cpp 107 void Path::addRect(const FloatRect& rect)
  /external/webkit/WebCore/platform/graphics/cg/
PathCG.cpp 227 void Path::addRect(const FloatRect& r)
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 278 void Path::addRect(const FloatRect& r)
280 m_path.addRect(r.x(), r.y(), r.width(), r.height());
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 158 void Path::addRect(const FloatRect& rect)
160 m_path->addRect(rect);
  /frameworks/base/awt/org/apache/harmony/awt/gl/render/
JavaArcRasterizer.java 36 mra.addRect(cx + Math.max(x1, start), y, cx + Math.min(x2, finish), y);
48 mra.addRect(cx + Math.max(x1, start), y, cx + Math.min(x2, finish), y);
60 mra.addRect(cx - Math.min(x2, finish), y, cx - Math.max(x1, start), y);
72 mra.addRect(cx - Math.min(x2, finish), y, cx - Math.max(x1, start), y);
84 mra.addRect(x, cy + Math.max(y1, start), x, cy + Math.min(y2, finish));
96 mra.addRect(x, cy + Math.max(y1, start), x, cy + Math.min(y2, finish));
108 mra.addRect(x, cy - Math.min(y2, finish), x, cy - Math.max(y1, start));
120 mra.addRect(x, cy - Math.min(y2, finish), x, cy - Math.max(y1, start));
129 mra.addRect(cx + prev, cy + (b - i), cx + line[i], cy + (b - i));
137 mra.addRect(cx + prev, cy - (b - i), cx + line[i], cy - (b - i))
    [all...]
JavaLineRasterizer.java 206 dst.addRect(px, y, x, y);
208 dst.addRect(x, y, px, y);
220 dst.addRect(px, y, x, y);
222 dst.addRect(x, y, px, y);
272 dst.addRect(x, py, x, y);
282 dst.addRect(x, py, x, y);
474 dst.addRect(x1, y1, x2, y2);
476 dst.addRect(x2, y2, x1, y1);
485 dst.addRect(px, y1, x - 1, y2);
488 dst.addRect(x + 1, y2, px, y1)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 350 public void addRect(RectF rect, Direction dir) {
366 public void addRect(float left, float top, float right, float bottom,
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 399 public void addRect(RectF rect, Direction dir) {
404 addRect(rect.left, rect.top, rect.right, rect.bottom, dir);
416 public void addRect(float left, float top, float right, float bottom,
  /external/skia/src/core/
SkPictureRecord.cpp 127 addRect(rect);
188 addRect(rect);
215 addRect(dst);
498 void SkPictureRecord::addRect(const SkRect& rect) {
SkPath.cpp 347 void SkPath::addRect(const SkRect& rect, Direction dir) {
348 this->addRect(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, dir);
351 void SkPath::addRect(SkScalar left, SkScalar top, SkScalar right,
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
MultiRectArea.java 166 addRect(x1, y1, x2, y2);
233 addRect(rect[i++], rect[i++], rect[i++], rect[i++]);
654 public void addRect(int x1, int y1, int x2, int y2) {
MultiRectAreaOp.java 787 dst.addRect(x11, y11, x12, y12);
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 98 path.addRect(new RectF(mDrawRect), Path.Direction.CW);
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 92 path.addRect(new RectF(mDrawRect), Path.Direction.CW);
  /frameworks/base/core/java/android/text/
Layout.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarView.java     [all...]

Completed in 452 milliseconds

1 2