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

1 2 3 4 5 6 7 8 910

  /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/
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...]
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.cpp 18 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom));
32 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom));
  /external/skia/src/pathops/
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...]
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.cpp 18 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom));
32 SkDoubleToScalar(dRect.fRight), SkDoubleToScalar(dRect.fBottom));
  /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/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);
SkBlitBWMaskTemplate.h 28 SkASSERT(clip.fRight <= srcMask.fBounds.fRight);
44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
61 int rite_edge = clip.fRight - maskLeft;
SkLineClipper.cpp 84 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
100 if (nestedLT(bounds.fRight, clip.fLeft, bounds.width()) ||
101 nestedLT(clip.fRight, bounds.fLeft, bounds.width()) ||
137 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
146 if (tmp[index1].fX > clip.fRight) {
147 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight));
257 } else if (tmp[index0].fX >= clip.fRight) { // wholly to the right
258 tmp[0].fX = tmp[1].fX = clip.fRight;
    [all...]
  /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);
SkBlitBWMaskTemplate.h 28 SkASSERT(clip.fRight <= srcMask.fBounds.fRight);
44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
61 int rite_edge = clip.fRight - maskLeft;
SkLineClipper.cpp 84 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
100 if (nestedLT(bounds.fRight, clip.fLeft, bounds.width()) ||
101 nestedLT(clip.fRight, bounds.fLeft, bounds.width()) ||
137 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
146 if (tmp[index1].fX > clip.fRight) {
147 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight));
257 } else if (tmp[index0].fX >= clip.fRight) { // wholly to the right
258 tmp[0].fX = tmp[1].fX = clip.fRight;
    [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/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/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);
  /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...]

Completed in 1813 milliseconds

1 2 3 4 5 6 7 8 910