/external/chromium_org/third_party/skia/include/gpu/ |
GrRect.h | 15 int16_t fLeft, fTop, fRight, fBottom; 17 int width() const { return fRight - fLeft; } 20 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } 25 fRight = SkToS16(r.fRight);
|
/external/skia/include/gpu/ |
GrRect.h | 15 int16_t fLeft, fTop, fRight, fBottom; 17 int width() const { return fRight - fLeft; } 20 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } 25 fRight = SkToS16(r.fRight);
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsRect.h | 13 double fLeft, fTop, fRight, fBottom; 22 if (fRight < pt.fX) { 23 fRight = pt.fX; 31 return approximately_between(fLeft, pt.fX, fRight) 36 SkASSERT(fLeft <= fRight); 38 SkASSERT(r->fLeft <= r->fRight); 40 return r->fLeft <= fRight && fLeft <= r->fRight && r->fTop <= fBottom && fTop <= r->fBottom; 44 fLeft = fRight = pt.fX; 49 return fRight - fLeft [all...] |
SkPathOpsBounds.h | 16 return a.fLeft <= b.fRight && b.fLeft <= a.fRight && 26 if (right > fRight) fRight = right; 31 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); 37 if (pt.fX > fRight) fRight = pt.fX; 45 return !(fLeft <= fRight) || !(fTop <= fBottom) 46 || (fLeft == fRight && fTop == fBottom); 54 fLeft = fRight = pt.fX [all...] |
SkPathOpsBounds.cpp | 18 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom)); 32 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom));
|
/external/skia/src/pathops/ |
SkPathOpsRect.h | 13 double fLeft, fTop, fRight, fBottom; 22 if (fRight < pt.fX) { 23 fRight = pt.fX; 31 return approximately_between(fLeft, pt.fX, fRight) 36 SkASSERT(fLeft <= fRight); 38 SkASSERT(r->fLeft <= r->fRight); 40 return r->fLeft <= fRight && fLeft <= r->fRight && r->fTop <= fBottom && fTop <= r->fBottom; 44 fLeft = fRight = pt.fX; 49 return fRight - fLeft [all...] |
SkPathOpsBounds.h | 16 return a.fLeft <= b.fRight && b.fLeft <= a.fRight && 26 if (right > fRight) fRight = right; 31 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); 37 if (pt.fX > fRight) fRight = pt.fX; 45 return !(fLeft <= fRight) || !(fTop <= fBottom) 46 || (fLeft == fRight && fTop == fBottom); 54 fLeft = fRight = pt.fX [all...] |
SkPathOpsBounds.cpp | 18 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom)); 32 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom));
|
/external/chromium_org/third_party/skia/src/core/ |
SkRect.cpp | 19 if (fLeft >= fRight || fTop >= fBottom) { 24 if (right > fRight) fRight = right; 30 if (fLeft > fRight) { 31 SkTSwap<int32_t>(fLeft, fRight); 41 if (fLeft > fRight) { 42 SkTSwap<SkScalar>(fLeft, fRight); 53 quad[1].set(fRight, fTop); 54 quad[2].set(fRight, fBottom); 136 fLeft < right && left < fRight && fTop < bottom && top < fBottom [all...] |
SkScan.h | 104 xr->fRight = SkIntToFixed(src.fRight); 115 xr->fRight = SkScalarToFixed(src.fRight); 124 dst->fRight = SkFixedRound(xr.fRight); 134 dst->fRight = SkFixedCeil(xr.fRight);
|
/external/skia/src/core/ |
SkRect.cpp | 19 if (fLeft >= fRight || fTop >= fBottom) { 24 if (right > fRight) fRight = right; 30 if (fLeft > fRight) { 31 SkTSwap<int32_t>(fLeft, fRight); 41 if (fLeft > fRight) { 42 SkTSwap<SkScalar>(fLeft, fRight); 53 quad[1].set(fRight, fTop); 54 quad[2].set(fRight, fBottom); 136 fLeft < right && left < fRight && fTop < bottom && top < fBottom [all...] |
SkScan.h | 104 xr->fRight = SkIntToFixed(src.fRight); 115 xr->fRight = SkScalarToFixed(src.fRight); 124 dst->fRight = SkFixedRound(xr.fRight); 134 dst->fRight = SkFixedCeil(xr.fRight);
|
/external/chromium_org/third_party/skia/include/core/ |
SkRect.h | 21 int32_t fLeft, fTop, fRight, fBottom; 61 int right() const { return fRight; } 72 int width() const { return fRight - fLeft; } 87 int centerX() const { return (fRight + fLeft) >> 1; } 101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } 105 SK_MaxS32 == fRight && 118 SkIsS16(fRight) && SkIsS16(fBottom); 128 fRight = right; 139 fRight = x + width; 148 fRight = fBottom = SK_MaxS32 [all...] |
/external/skia/include/core/ |
SkRect.h | 21 int32_t fLeft, fTop, fRight, fBottom; 61 int right() const { return fRight; } 72 int width() const { return fRight - fLeft; } 87 int centerX() const { return (fRight + fLeft) >> 1; } 101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } 105 SK_MaxS32 == fRight && 118 SkIsS16(fRight) && SkIsS16(fBottom); 128 fRight = right; 139 fRight = x + width; 148 fRight = fBottom = SK_MaxS32 [all...] |
/external/chromium_org/third_party/skia/include/views/animated/ |
SkBorderView.h | 23 SkScalar getRight() const { return fRight; } 34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
|
/external/skia/include/views/animated/ |
SkBorderView.h | 23 SkScalar getRight() const { return fRight; } 34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
|
/external/chromium_org/third_party/skia/src/animator/ |
SkBoundable.cpp | 17 fBounds.fRight = 0; 33 rect->fRight = SkIntToScalar(fBounds.fRight);
|
/external/skia/src/animator/ |
SkBoundable.cpp | 17 fBounds.fRight = 0; 33 rect->fRight = SkIntToScalar(fBounds.fRight);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrSoftwarePathRenderer.cpp | 92 devClipBounds.fRight, devPathBounds.fTop); 100 if (devClipBounds.fRight > devPathBounds.fRight) { 101 rect.iset(devPathBounds.fRight, devPathBounds.fTop, 102 devClipBounds.fRight, devPathBounds.fBottom); 107 devClipBounds.fRight, devClipBounds.fBottom);
|
/external/skia/src/gpu/ |
GrSoftwarePathRenderer.cpp | 92 devClipBounds.fRight, devPathBounds.fTop); 100 if (devClipBounds.fRight > devPathBounds.fRight) { 101 rect.iset(devPathBounds.fRight, devPathBounds.fTop, 102 devClipBounds.fRight, devPathBounds.fBottom); 107 devClipBounds.fRight, devClipBounds.fBottom);
|
/external/chromium_org/third_party/skia/src/views/animated/ |
SkBorderView.cpp | 16 fRight(SkIntToScalar(0)), 74 evt.findScalar("rightMargin", &fRight); 81 fMargin.set(fLeft, fTop, fRight, fBottom);
|
/external/skia/src/views/animated/ |
SkBorderView.cpp | 16 fRight(SkIntToScalar(0)), 74 evt.findScalar("rightMargin", &fRight); 81 fMargin.set(fLeft, fTop, fRight, fBottom);
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGSVG.cpp | 49 box.fRight = SkScalarDiv(viewBox[2], width); 52 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1) 65 if (box.fRight != SK_Scalar1) { 67 x.appendScalar(box.fRight);
|
/external/skia/src/svg/ |
SkSVGSVG.cpp | 49 box.fRight = SkScalarDiv(viewBox[2], width); 52 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1) 65 if (box.fRight != SK_Scalar1) { 67 x.appendScalar(box.fRight);
|
/frameworks/base/core/jni/android/graphics/ |
NinePatchImpl.cpp | 260 src.fRight = bitmapWidth; 261 dst.fRight = bounds.fRight; 263 src.fRight = chunk.xDivs[i]; 265 dst.fRight = dstRights[i]; 267 const int srcXSize = src.fRight - src.fLeft; 269 dst.fRight = dst.fLeft + calculateStretch(bounds.fRight, dst.fLeft, 275 dst.fRight = dst.fLeft + SkIntToScalar(srcXSize); 278 dstRights[i] = dst.fRight; [all...] |