HomeSort by relevance Sort by last modified time
    Searched refs:fTop (Results 1 - 25 of 361) 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;
18 int height() const { return fBottom - fTop; }
20 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
24 fTop = SkToS16(r.fTop);
  /external/skia/include/gpu/
GrRect.h 15 int16_t fLeft, fTop, fRight, fBottom;
18 int height() const { return fBottom - fTop; }
20 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
24 fTop = SkToS16(r.fTop);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsBounds.h 17 a.fTop <= b.fBottom && b.fTop <= a.fBottom;
25 if (top < fTop) fTop = top;
31 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
36 if (pt.fY < fTop) fTop = pt.fY;
45 return !(fLeft <= fRight) || !(fTop <= fBottom)
46 || (fLeft == fRight && fTop == fBottom);
55 fTop = fBottom = pt.fY
    [all...]
SkPathOpsRect.h 13 double fLeft, fTop, fRight, fBottom;
19 if (fTop > pt.fY) {
20 fTop = pt.fY;
32 && approximately_between(fTop, pt.fY, fBottom);
37 SkASSERT(fTop <= fBottom);
39 SkASSERT(r->fTop <= r->fBottom);
40 return r->fLeft <= fRight && fLeft <= r->fRight && r->fTop <= fBottom && fTop <= r->fBottom;
45 fTop = fBottom = pt.fY;
53 return fBottom - fTop;
    [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 17 a.fTop <= b.fBottom && b.fTop <= a.fBottom;
25 if (top < fTop) fTop = top;
31 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
36 if (pt.fY < fTop) fTop = pt.fY;
45 return !(fLeft <= fRight) || !(fTop <= fBottom)
46 || (fLeft == fRight && fTop == fBottom);
55 fTop = fBottom = pt.fY
    [all...]
SkPathOpsRect.h 13 double fLeft, fTop, fRight, fBottom;
19 if (fTop > pt.fY) {
20 fTop = pt.fY;
32 && approximately_between(fTop, pt.fY, fBottom);
37 SkASSERT(fTop <= fBottom);
39 SkASSERT(r->fTop <= r->fBottom);
40 return r->fLeft <= fRight && fLeft <= r->fRight && r->fTop <= fBottom && fTop <= r->fBottom;
45 fTop = fBottom = pt.fY;
53 return fBottom - fTop;
    [all...]
SkPathOpsBounds.cpp 17 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
31 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
  /external/chromium_org/third_party/skia/include/core/
SkRect.h 21 int32_t fLeft, fTop, fRight, fBottom;
60 int top() const { return fTop; }
67 int y() const { return fTop; }
78 int height() const { return fBottom - fTop; }
96 int centerY() const { return (fBottom + fTop) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
104 SK_MinS32 == fTop &&
117 return SkIsS16(fLeft) && SkIsS16(fTop) &&
127 fTop = top;
138 fTop = y
    [all...]
  /external/skia/include/core/
SkRect.h 21 int32_t fLeft, fTop, fRight, fBottom;
60 int top() const { return fTop; }
67 int y() const { return fTop; }
78 int height() const { return fBottom - fTop; }
96 int centerY() const { return (fBottom + fTop) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
104 SK_MinS32 == fTop &&
117 return SkIsS16(fLeft) && SkIsS16(fTop) &&
127 fTop = top;
138 fTop = y
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRect.cpp 19 if (fLeft >= fRight || fTop >= fBottom) {
23 if (top < fTop) fTop = top;
33 if (fTop > fBottom) {
34 SkTSwap<int32_t>(fTop, fBottom);
44 if (fTop > fBottom) {
45 SkTSwap<SkScalar>(fTop, fBottom);
52 quad[0].set(fLeft, fTop);
53 quad[1].set(fRight, fTop);
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom
    [all...]
SkRegion_rects.cpp 20 SkRegion::RunType fTop;
48 edges[0].fTop = r.fTop;
53 edges[1].fTop = r.fTop;
77 SkRegion::RunType fTop;
85 fTop = top;
103 if (edge->fTop > currY) {
104 nextY = SkMin32(nextY, edge->fTop);
112 if (edge->fTop > currY)
    [all...]
SkScan.h 103 xr->fTop = SkIntToFixed(src.fTop);
114 xr->fTop = SkScalarToFixed(src.fTop);
123 dst->fTop = SkFixedRound(xr.fTop);
133 dst->fTop = SkFixedFloor(xr.fTop);
SkBBoxRecord.cpp 89 SkScalar h = bbox.fBottom - bbox.fTop;
91 bbox.fTop -= h / 2;
96 bbox.fTop += metrics.fTop;
107 bbox.fTop = metrics.fTop;
115 SkScalar pad = (metrics.fBottom - metrics.fTop) / 2;
121 bbox.fTop += y;
166 bbox.fTop += metrics.fTop;
    [all...]
  /external/skia/src/core/
SkRect.cpp 19 if (fLeft >= fRight || fTop >= fBottom) {
23 if (top < fTop) fTop = top;
33 if (fTop > fBottom) {
34 SkTSwap<int32_t>(fTop, fBottom);
44 if (fTop > fBottom) {
45 SkTSwap<SkScalar>(fTop, fBottom);
52 quad[0].set(fLeft, fTop);
53 quad[1].set(fRight, fTop);
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom
    [all...]
SkRegion_rects.cpp 20 SkRegion::RunType fTop;
48 edges[0].fTop = r.fTop;
53 edges[1].fTop = r.fTop;
77 SkRegion::RunType fTop;
85 fTop = top;
103 if (edge->fTop > currY) {
104 nextY = SkMin32(nextY, edge->fTop);
112 if (edge->fTop > currY)
    [all...]
SkScan.h 103 xr->fTop = SkIntToFixed(src.fTop);
114 xr->fTop = SkScalarToFixed(src.fTop);
123 dst->fTop = SkFixedRound(xr.fTop);
133 dst->fTop = SkFixedFloor(xr.fTop);
SkBBoxRecord.cpp 89 SkScalar h = bbox.fBottom - bbox.fTop;
91 bbox.fTop -= h / 2;
96 bbox.fTop += metrics.fTop;
107 bbox.fTop = metrics.fTop;
115 SkScalar pad = (metrics.fBottom - metrics.fTop) / 2;
121 bbox.fTop += y;
166 bbox.fTop += metrics.fTop;
    [all...]
  /external/chromium_org/third_party/skia/include/views/animated/
SkBorderView.h 24 SkScalar getTop() const { return fTop; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
  /external/skia/include/views/animated/
SkBorderView.h 24 SkScalar getTop() const { return fTop; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
  /external/chromium_org/third_party/skia/src/gpu/
GrSoftwarePathRenderer.cpp 90 if (devClipBounds.fTop < devPathBounds.fTop) {
91 rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
92 devClipBounds.fRight, devPathBounds.fTop);
96 rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
101 rect.iset(devPathBounds.fRight, devPathBounds.fTop,
  /external/skia/src/gpu/
GrSoftwarePathRenderer.cpp 90 if (devClipBounds.fTop < devPathBounds.fTop) {
91 rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
92 devClipBounds.fRight, devPathBounds.fTop);
96 rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
101 rect.iset(devPathBounds.fRight, devPathBounds.fTop,
  /external/skia/bench/
RTreeBench.cpp 115 query.fTop = rand.nextU() % GENERATE_EXTENTS;
117 query.fBottom = query.fTop + (GENERATE_EXTENTS / 20);
121 query.fTop = rand.nextU() % GENERATE_EXTENTS;
123 query.fBottom = query.fTop + (GENERATE_EXTENTS / 2);
127 query.fTop = -GENERATE_EXTENTS;
134 query.fTop = rand.nextU() % GENERATE_EXTENTS;
136 query.fBottom = query.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 2);
169 out.fTop = rand.nextU() % GENERATE_EXTENTS;
171 out.fBottom = out.fTop + (GENERATE_EXTENTS / 200);
178 out.fTop = rand.nextS() % GENERATE_EXTENTS
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkBoundable.cpp 16 fBounds.fTop = 0;
32 rect->fTop = SkIntToScalar(fBounds.fTop);
  /external/skia/src/animator/
SkBoundable.cpp 16 fBounds.fTop = 0;
32 rect->fTop = SkIntToScalar(fBounds.fTop);

Completed in 1084 milliseconds

1 2 3 4 5 6 7 8 91011>>