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

1 2 3 4 5 6 7 8 91011>>

  /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; }
23 fLeft = SkToS16(r.fLeft);
  /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; }
23 fLeft = SkToS16(r.fLeft);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLIRect.h 21 GrGLint fLeft;
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
48 fLeft = glRect.fLeft + leftOffset;
57 GrAssert(fLeft >= 0);
64 return fLeft <= glRect.fLeft &&
66 fLeft + fWidth >= glRect.fLeft + glRect.fWidth &
    [all...]
  /external/skia/src/gpu/gl/
GrGLIRect.h 21 GrGLint fLeft;
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
48 fLeft = glRect.fLeft + leftOffset;
57 GrAssert(fLeft >= 0);
64 return fLeft <= glRect.fLeft &&
66 fLeft + fWidth >= glRect.fLeft + glRect.fWidth &
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsBounds.h 16 return a.fLeft <= b.fRight && b.fLeft <= a.fRight &&
24 if (left < fLeft) fLeft = left;
31 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
35 if (pt.fX < fLeft) fLeft = 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;
16 if (fLeft > pt.fX) {
17 fLeft = 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 17 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
31 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
  /external/skia/src/pathops/
SkPathOpsBounds.h 16 return a.fLeft <= b.fRight && b.fLeft <= a.fRight &&
24 if (left < fLeft) fLeft = left;
31 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
35 if (pt.fX < fLeft) fLeft = 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;
16 if (fLeft > pt.fX) {
17 fLeft = 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...]
  /external/chromium_org/third_party/skia/include/core/
SkRect.h 21 int32_t fLeft, fTop, fRight, fBottom;
59 int left() const { return fLeft; }
65 int x() const { return fLeft; }
72 int width() const { return fRight - fLeft; }
87 int centerX() const { return (fRight + fLeft) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
103 bool isLargest() const { return SK_MinS32 == fLeft &&
117 return SkIsS16(fLeft) && SkIsS16(fTop) &&
126 fLeft = left;
137 fLeft = x
    [all...]
  /external/skia/include/core/
SkRect.h 21 int32_t fLeft, fTop, fRight, fBottom;
59 int left() const { return fLeft; }
65 int x() const { return fLeft; }
72 int width() const { return fRight - fLeft; }
87 int centerX() const { return (fRight + fLeft) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
103 bool isLargest() const { return SK_MinS32 == fLeft &&
117 return SkIsS16(fLeft) && SkIsS16(fTop) &&
126 fLeft = left;
137 fLeft = x
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRect.cpp 19 if (fLeft >= fRight || fTop >= fBottom) {
22 if (left < fLeft) fLeft = left;
30 if (fLeft > fRight) {
31 SkTSwap<int32_t>(fLeft, fRight);
41 if (fLeft > fRight) {
42 SkTSwap<SkScalar>(fLeft, fRight);
52 quad[0].set(fLeft, fTop);
55 quad[3].set(fLeft, fBottom);
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom
    [all...]
SkScan.h 102 xr->fLeft = SkIntToFixed(src.fLeft);
113 xr->fLeft = SkScalarToFixed(src.fLeft);
122 dst->fLeft = SkFixedRound(xr.fLeft);
132 dst->fLeft = SkFixedFloor(xr.fLeft);
  /external/skia/src/core/
SkRect.cpp 19 if (fLeft >= fRight || fTop >= fBottom) {
22 if (left < fLeft) fLeft = left;
30 if (fLeft > fRight) {
31 SkTSwap<int32_t>(fLeft, fRight);
41 if (fLeft > fRight) {
42 SkTSwap<SkScalar>(fLeft, fRight);
52 quad[0].set(fLeft, fTop);
55 quad[3].set(fLeft, fBottom);
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom
    [all...]
SkScan.h 102 xr->fLeft = SkIntToFixed(src.fLeft);
113 xr->fLeft = SkScalarToFixed(src.fLeft);
122 dst->fLeft = SkFixedRound(xr.fLeft);
132 dst->fLeft = SkFixedFloor(xr.fLeft);
  /external/chromium_org/third_party/skia/src/animator/
SkBoundable.cpp 22 fBounds.fLeft = 0x7fff;
27 if (fBounds.fLeft == (int16_t)0x8000U) {
31 rect->fLeft = SkIntToScalar(fBounds.fLeft);
38 fBounds.fLeft = 0;
SkBoundable.h 22 bool hasBounds() { return fBounds.fLeft != (int16_t)0x8000U; }
25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
  /external/skia/src/animator/
SkBoundable.cpp 22 fBounds.fLeft = 0x7fff;
27 if (fBounds.fLeft == (int16_t)0x8000U) {
31 rect->fLeft = SkIntToScalar(fBounds.fLeft);
38 fBounds.fLeft = 0;
SkBoundable.h 22 bool hasBounds() { return fBounds.fLeft != (int16_t)0x8000U; }
25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
  /external/chromium_org/third_party/skia/include/views/animated/
SkBorderView.h 22 SkScalar getLeft() const { return fLeft; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
  /external/skia/include/views/animated/
SkBorderView.h 22 SkScalar getLeft() const { return fLeft; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
  /external/chromium_org/third_party/skia/src/gpu/
GrSoftwarePathRenderer.cpp 91 rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
95 if (devClipBounds.fLeft < devPathBounds.fLeft) {
96 rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
97 devPathBounds.fLeft, devPathBounds.fBottom);
106 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom,
  /external/skia/src/gpu/
GrSoftwarePathRenderer.cpp 91 rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
95 if (devClipBounds.fLeft < devPathBounds.fLeft) {
96 rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
97 devPathBounds.fLeft, devPathBounds.fBottom);
106 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom,
  /frameworks/base/core/jni/android/graphics/
NinePatchImpl.cpp 80 if (!getColor(bitmap, src.fLeft, src.fTop, &c)) {
206 SkScalarToFloat(bounds.fLeft), SkScalarToFloat(bounds.fTop),
232 src.fLeft = 0;
233 dst.fLeft = bounds.fLeft;
256 i <= numXDivs && src.fLeft < bitmapWidth;
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)
    [all...]
  /external/skia/bench/
RTreeBench.cpp 114 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
116 query.fRight = query.fLeft + (GENERATE_EXTENTS / 20);
120 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
122 query.fRight = query.fLeft + (GENERATE_EXTENTS / 2);
126 query.fLeft = -GENERATE_EXTENTS;
133 query.fLeft = rand.nextU() % GENERATE_EXTENTS;
135 query.fRight = query.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 2);
168 out.fLeft = rand.nextU() % GENERATE_EXTENTS;
170 out.fRight = out.fLeft + (GENERATE_EXTENTS / 200);
177 out.fLeft = rand.nextS() % GENERATE_EXTENTS
    [all...]

Completed in 353 milliseconds

1 2 3 4 5 6 7 8 91011>>