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

1 2 3

  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) {
GrRectanizer_skyline.cpp 11 bool GrRectanizerSkyline::addRect(int width, int height, SkIPoint16* loc) {
  /external/skqp/src/gpu/
GrRectanizer_pow2.cpp 10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) {
GrRectanizer_skyline.cpp 11 bool GrRectanizerSkyline::addRect(int width, int height, SkIPoint16* loc) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRedEyeRepresentation.java 50 public void addRect(RectF rect, RectF bounds) {
  /frameworks/base/core/tests/coretests/src/android/graphics/
PathOffsetTest.java 45 actualPath.addRect(START_X, START_Y, START_X + SQUARE, START_Y + SQUARE, Direction.CW);
51 expectedPath.addRect(START_X + OFFSET_X, START_Y + OFFSET_Y, START_X + OFFSET_X + SQUARE,
61 initialPath.addRect(START_X, START_Y, START_X + SQUARE, START_Y + SQUARE, Direction.CW);
69 expectedPath.addRect(START_X + OFFSET_X, START_Y + OFFSET_Y, START_X + OFFSET_X + SQUARE,
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 88 p.addRect(new RectF(-SQUARE, -SQUARE, SQUARE, SQUARE), Direction.CCW);
PathTest.java 63 path.addRect(rect, Path.Direction.CW);
71 path.addRect(LEFT, TOP, RIGHT, BOTTOM, Path.Direction.CW);
95 path.addRect(new RectF(0, 0, 10, 10), Path.Direction.CW);
97 path1.addRect(new RectF(10, 10, 20, 20), Path.Direction.CW);
221 path.addRect(bounds, Path.Direction.CW);
338 path.addRect(0, 0, 100, 10, Path.Direction.CW);
341 path.addRect(0, 0, 10, 100, Path.Direction.CW);
348 path.addRect(0, 0, 40, 40, Path.Direction.CW);
351 path.addRect(10, 10, 30, 30, Path.Direction.CCW);
358 path.addRect(0, 0, 10, 10, Path.Direction.CW)
    [all...]
CanvasTest.java 672 p.addRect(new RectF(0, 0, 10, 31), Direction.CCW);
679 p.addRect(new RectF(0, 0, 10, 31), Direction.CW);
705 p.addRect(new RectF(5, 5, 10, 10), Direction.CW);
740 p.addRect(new RectF(0, 0, 10, 31), Direction.CCW);
    [all...]
  /external/skia/src/gpu/ccpr/
GrCCAtlas.cpp 31 bool addRect(int w, int h, SkIPoint16* loc, int maxAtlasSize) {
39 if (!fRectanizer.addRect(w, h, loc)) {
102 bool GrCCAtlas::addRect(int w, int h, SkIPoint16* loc) {
118 if (node->addRect(w, h, loc, fMaxAtlasSize)) {
137 } while (!fTopNode->addRect(w, h, loc, fMaxAtlasSize));
  /external/skqp/src/gpu/ccpr/
GrCCAtlas.cpp 28 bool addRect(int w, int h, SkIPoint16* loc) {
31 if (!fRectanizer.addRect(w + kPad, h + kPad, loc)) {
92 bool GrCCAtlas::addRect(int w, int h, SkIPoint16* loc) {
110 if (node->addRect(w, h, loc)) {
130 } while (!fTopNode->addRect(w, h, loc));
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 115 mPath.addRect(r, Path.Direction.CW);
124 mPath.addRect(mInnerRect, Path.Direction.CCW);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRedEye.java 84 mRedEyeRep.addRect(r, r2);
ImageStraighten.java 302 mDrawPath.addRect(mDrawRect, Path.Direction.CW);
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 336 pathDelegate.addRect(left, top, right, bottom, dir);
832 public void addRect(float left, float top, float right, float bottom,
  /external/skia/src/core/
SkPictureRecord.cpp 118 this->addRect(*rec.fBounds);
331 this->addRect(rect);
430 this->addRect(oval);
441 this->addRect(oval);
453 this->addRect(rect);
521 this->addRect(dst);
535 this->addRect(dst);
548 this->addRect(dst);
799 this->addRect(rect);
886 void SkPictureRecord::addRect(const SkRect& rect)
    [all...]
SkPath.cpp 993 void SkPath::addRect(const SkRect& rect, Direction dir) {
994 this->addRect(rect, dir, 0);
997 void SkPath::addRect(SkScalar left, SkScalar top, SkScalar right,
999 this->addRect(SkRect::MakeLTRB(left, top, right, bottom), dir, 0);
1002 void SkPath::addRect(const SkRect &rect, Direction dir, unsigned startIndex) {
    [all...]
  /external/skqp/src/core/
SkPictureRecord.cpp 118 this->addRect(*rec.fBounds);
331 this->addRect(rect);
430 this->addRect(oval);
441 this->addRect(oval);
453 this->addRect(rect);
521 this->addRect(dst);
535 this->addRect(dst);
548 this->addRect(dst);
799 this->addRect(rect);
886 void SkPictureRecord::addRect(const SkRect& rect)
    [all...]
SkPath.cpp 984 void SkPath::addRect(const SkRect& rect, Direction dir) {
985 this->addRect(rect, dir, 0);
988 void SkPath::addRect(SkScalar left, SkScalar top, SkScalar right,
990 this->addRect(SkRect::MakeLTRB(left, top, right, bottom), dir, 0);
993 void SkPath::addRect(const SkRect &rect, Direction dir, unsigned startIndex) {
    [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 137 static void addRect(JNIEnv* env, jclass clazz, jlong objHandle,
141 obj->addRect(left, top, right, bottom, dir);
532 {"nAddRect","(JFFFFI)V", (void*) SkPathGlue::addRect},
  /frameworks/base/graphics/java/android/graphics/
Path.java 545 public void addRect(RectF rect, Direction dir) {
546 addRect(rect.left, rect.top, rect.right, rect.bottom, dir);
558 public void addRect(float left, float top, float right, float bottom, Direction dir) {
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 98 path.addRect(new RectF(mDrawRect), Path.Direction.CW);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
BatteryMeterDrawableBase.java 350 mShapePath.addRect(mButtonFrame, Direction.CW);
353 p.addRect(mButtonFrame, Direction.CW);
SignalDrawable.java 347 mForegroundPath.addRect(padding, padding, padding + sigWidth, height - padding,
370 p.addRect(x, y, x + dotSize, y + dotSize, Direction.CW);
  /frameworks/base/core/java/android/widget/
SmartSelectSprite.java 322 rectanglePath.addRect(shape.mBoundingRectangle, Path.Direction.CW);

Completed in 586 milliseconds

1 2 3