/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/ |
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.h | 18 && AlmostLessOrEqualUlps(a.fTop, b.fBottom) 19 && AlmostLessOrEqualUlps(b.fTop, a.fBottom); 27 if (top < fTop) fTop = top; 33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); 38 if (pt.fY < fTop) fTop = pt.fY; 46 && AlmostLessOrEqualUlps(fTop, pt.fY) 54 return !(fLeft <= fRight) || !(fTop <= fBottom) 55 || (fLeft == fRight && fTop == fBottom) [all...] |
SkPathOpsBounds.cpp | 17 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop), 31 set(SkDoubleToScalar(dRect.fLeft), SkDoubleToScalar(dRect.fTop),
|
/external/skia/src/pathops/ |
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.h | 18 && AlmostLessOrEqualUlps(a.fTop, b.fBottom) 19 && AlmostLessOrEqualUlps(b.fTop, a.fBottom); 27 if (top < fTop) fTop = top; 33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); 38 if (pt.fY < fTop) fTop = pt.fY; 46 && AlmostLessOrEqualUlps(fTop, pt.fY) 54 return !(fLeft <= fRight) || !(fTop <= fBottom) 55 || (fLeft == fRight && fTop == fBottom) [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/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...] |
/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...] |
/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/content/test/data/session_history/ |
frames.html | 12 var ftop = document.getElementById("ftop"); 13 var node = ftop.contentDocument.getElementById(name); 41 <frame src="top.html" id="ftop" name="top">
|
/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/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);
|
/external/skia/bench/ |
RTreeBench.cpp | 122 query.fTop = rand.nextU() % GENERATE_EXTENTS; 124 query.fBottom = query.fTop + (GENERATE_EXTENTS / 20); 128 query.fTop = rand.nextU() % GENERATE_EXTENTS; 130 query.fBottom = query.fTop + (GENERATE_EXTENTS / 2); 134 query.fTop = -GENERATE_EXTENTS; 141 query.fTop = rand.nextU() % GENERATE_EXTENTS; 143 query.fBottom = query.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 2); 166 out.fTop = index / GRID_WIDTH; 168 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); 174 out.fTop = index % GRID_WIDTH [all...] |
/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/chromium_org/third_party/skia/src/views/animated/ |
SkBorderView.cpp | 17 fTop(SkIntToScalar(0)), 75 evt.findScalar("topMargin", &fTop); 81 fMargin.set(fLeft, fTop, fRight, fBottom);
|
/external/skia/src/views/animated/ |
SkBorderView.cpp | 17 fTop(SkIntToScalar(0)), 75 evt.findScalar("topMargin", &fTop); 81 fMargin.set(fLeft, fTop, fRight, fBottom);
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGSVG.cpp | 48 box.fTop = SkScalarDiv(viewBox[1], height); 51 if (box.fLeft == 0 && box.fTop == 0 && 60 if (box.fTop != 0) { 62 y.appendScalar(box.fTop);
|