Searched refs:fLeft (Results 1 - 25 of 347) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/include/gpu/
H A DGrRect.h15 int16_t fLeft, fTop, fRight, fBottom; member in struct:GrIRect16
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/
H A DGrRect.h15 int16_t fLeft, fTop, fRight, fBottom; member in struct:GrIRect16
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/
H A DGrGLIRect.h21 GrGLint fLeft; member in struct:GrGLIRect
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
[all...]
/external/skia/src/gpu/gl/
H A DGrGLIRect.h21 GrGLint fLeft; member in struct:GrGLIRect
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
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsBounds.h16 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
[all...]
H A DSkPathOpsRect.h13 double fLeft, fTop, fRight, fBottom; member in struct:SkDRect
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...]
H A DSkPathOpsBounds.cpp17 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
31 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
/external/skia/src/pathops/
H A DSkPathOpsBounds.h16 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
[all...]
H A DSkPathOpsRect.h13 double fLeft, fTop, fRight, fBottom; member in struct:SkDRect
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...]
H A DSkPathOpsBounds.cpp17 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
31 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
/external/chromium_org/third_party/skia/include/core/
H A DSkRect.h21 int32_t fLeft, fTop, fRight, fBottom; member in struct:SkIRect
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
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRect.cpp19 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 < righ
[all...]
H A DSkScan.h102 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/include/core/
H A DSkRect.h21 int32_t fLeft, fTop, fRight, fBottom; member in struct:SkIRect
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
[all...]
/external/skia/src/core/
H A DSkRect.cpp19 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 < righ
[all...]
H A DSkScan.h102 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/
H A DSkBoundable.cpp22 fBounds.fLeft = 0x7fff;
27 if (fBounds.fLeft == (int16_t)0x8000U) {
31 rect->fLeft = SkIntToScalar(fBounds.fLeft);
38 fBounds.fLeft = 0;
H A DSkBoundable.h22 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/
H A DSkBoundable.cpp22 fBounds.fLeft = 0x7fff;
27 if (fBounds.fLeft == (int16_t)0x8000U) {
31 rect->fLeft = SkIntToScalar(fBounds.fLeft);
38 fBounds.fLeft = 0;
H A DSkBoundable.h22 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/
H A DSkBorderView.h22 SkScalar getLeft() const { return fLeft; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side member in class:SkBorderView
/external/skia/include/views/animated/
H A DSkBorderView.h22 SkScalar getLeft() const { return fLeft; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side member in class:SkBorderView
/external/chromium_org/third_party/skia/src/gpu/
H A DGrSoftwarePathRenderer.cpp91 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/
H A DGrSoftwarePathRenderer.cpp91 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/bench/
H A DRTreeBench.cpp114 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
[all...]

Completed in 504 milliseconds

1234567891011>>