/external/chromium_org/third_party/skia/src/animator/ |
SkBoundable.cpp | 16 fBounds.fTop = 0; 17 fBounds.fRight = 0; 18 fBounds.fBottom = 0; 22 fBounds.fLeft = 0x7fff; 27 if (fBounds.fLeft == (int16_t)0x8000U) { 31 rect->fLeft = SkIntToScalar(fBounds.fLeft); 32 rect->fTop = SkIntToScalar(fBounds.fTop); 33 rect->fRight = SkIntToScalar(fBounds.fRight); 34 rect->fBottom = SkIntToScalar(fBounds.fBottom); 38 fBounds.fLeft = 0 [all...] |
SkBoundable.h | 22 bool hasBounds() { return fBounds.fLeft != (int16_t)0x8000U; } 23 void setBounds(SkIRect& bounds) { fBounds = bounds; } 25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset 26 SkIRect fBounds;
|
SkDisplayBounds.cpp | 30 fBounds.setEmpty(); 34 if (inval && fBounds.isEmpty() == false) { 38 rect = fBounds; 40 rect.join(fBounds);
|
/external/skia/src/animator/ |
SkBoundable.cpp | 16 fBounds.fTop = 0; 17 fBounds.fRight = 0; 18 fBounds.fBottom = 0; 22 fBounds.fLeft = 0x7fff; 27 if (fBounds.fLeft == (int16_t)0x8000U) { 31 rect->fLeft = SkIntToScalar(fBounds.fLeft); 32 rect->fTop = SkIntToScalar(fBounds.fTop); 33 rect->fRight = SkIntToScalar(fBounds.fRight); 34 rect->fBottom = SkIntToScalar(fBounds.fBottom); 38 fBounds.fLeft = 0 [all...] |
SkBoundable.h | 22 bool hasBounds() { return fBounds.fLeft != (int16_t)0x8000U; } 23 void setBounds(SkIRect& bounds) { fBounds = bounds; } 25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset 26 SkIRect fBounds;
|
SkDisplayBounds.cpp | 30 fBounds.setEmpty(); 34 if (inval && fBounds.isEmpty() == false) { 38 rect = fBounds; 40 rect.join(fBounds);
|
/external/chromium_org/third_party/skia/include/core/ |
SkMask.h | 34 SkIRect fBounds; 40 bool isEmpty() const { return fBounds.isEmpty(); } 56 x,y are in the same coordiate space as fBounds. 60 SkASSERT(fBounds.contains(x, y)); 62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes; 67 x,y are in the same coordiate space as fBounds. 71 SkASSERT(fBounds.contains(x, y)); 73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes [all...] |
SkRegion.h | 86 const SkIRect& getBounds() const { return fBounds; } 197 SkASSERT(this->isEmpty() == fBounds.isEmpty()); // valid region 201 /* fBounds.contains(left, top, right, bottom); */ 202 fBounds.fLeft <= left && fBounds.fTop <= top && 203 fBounds.fRight >= right && fBounds.fBottom >= bottom; 213 !SkIRect::Intersects(fBounds, rect); 223 !SkIRect::Intersects(fBounds, rgn.fBounds); [all...] |
/external/skia/include/core/ |
SkMask.h | 34 SkIRect fBounds; 40 bool isEmpty() const { return fBounds.isEmpty(); } 56 x,y are in the same coordiate space as fBounds. 60 SkASSERT(fBounds.contains(x, y)); 62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes; 67 x,y are in the same coordiate space as fBounds. 71 SkASSERT(fBounds.contains(x, y)); 73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrPath.h | 25 fBounds(skPath.getBounds()) { 34 const SkRect& getBounds() const { return fBounds; } 41 SkRect fBounds;
|
/external/skia/src/gpu/ |
GrPath.h | 25 fBounds(skPath.getBounds()) { 34 const SkRect& getBounds() const { return fBounds; } 41 SkRect fBounds;
|
/external/chromium_org/third_party/skia/src/core/ |
SkRTree.h | 105 SkIRect fBounds; 128 return lhs.fBounds.*fSide < rhs.fBounds.*fSide; 136 return ((lhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1) < 137 ((rhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1); 143 return ((lhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) < 144 ((rhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) [all...] |
SkMaskFilter.cpp | 30 SkASSERT(src.fBounds.contains(dst->fBounds)); 32 const int dx = dst->fBounds.left() - src.fBounds.left(); 33 const int dy = dst->fBounds.top() - src.fBounds.top(); 56 for (int y = mask.fBounds.top(); y < mask.fBounds.bottom(); ++y) { 57 for (int x = mask.fBounds.left(); x < mask.fBounds.right(); ++x) [all...] |
SkMask.cpp | 25 return safeMul32(fBounds.height(), fRowBytes); 69 SkASSERT(fBounds.contains(x, y)); 73 addr += (y - fBounds.fTop) * fRowBytes; 74 addr += (x - fBounds.fLeft) << maskFormatToShift(fFormat);
|
SkRTree.cpp | 54 newBranch.fBounds = bounds; 69 fRoot.fBounds = this->computeBounds(fRoot.fChild.subtree); 78 fRoot.fBounds = this->computeBounds(fRoot.fChild.subtree); 93 fRoot.fBounds = fDeferredInserts[0].fBounds; 110 if (!this->isEmpty() && SkIRect::IntersectsNoEmptyCheck(fRoot.fBounds, query)) { 136 root->child(childIndex)->fBounds = this->computeBounds( 165 branch->fBounds = this->computeBounds(newSibling); 184 const SkIRect& subtreeBounds = root->child(i)->fBounds; 185 int32_t areaIncrease = get_area_increase(subtreeBounds, branch->fBounds); [all...] |
SkRegion.cpp | 73 fBounds.set(0, 0, 0, 0); 123 SkTSwap<SkIRect>(fBounds, other.fBounds); 138 fBounds.set(0, 0, 0, 0); 149 fBounds.set(left, top, right, bottom); 162 fBounds = src.fBounds; 229 *itop = fBounds.fTop; 230 *ibot = fBounds.fBottom; 284 if (SkRegion::RunsAreARect(runs, count, &fBounds)) { [all...] |
/external/skia/src/core/ |
SkRTree.h | 105 SkIRect fBounds; 128 return lhs.fBounds.*fSide < rhs.fBounds.*fSide; 136 return ((lhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1) < 137 ((rhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1); 143 return ((lhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) < 144 ((rhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) [all...] |
SkMaskFilter.cpp | 30 SkASSERT(src.fBounds.contains(dst->fBounds)); 32 const int dx = dst->fBounds.left() - src.fBounds.left(); 33 const int dy = dst->fBounds.top() - src.fBounds.top(); 56 for (int y = mask.fBounds.top(); y < mask.fBounds.bottom(); ++y) { 57 for (int x = mask.fBounds.left(); x < mask.fBounds.right(); ++x) [all...] |
SkMask.cpp | 25 return safeMul32(fBounds.height(), fRowBytes); 69 SkASSERT(fBounds.contains(x, y)); 73 addr += (y - fBounds.fTop) * fRowBytes; 74 addr += (x - fBounds.fLeft) << maskFormatToShift(fFormat);
|
SkRTree.cpp | 54 newBranch.fBounds = bounds; 69 fRoot.fBounds = this->computeBounds(fRoot.fChild.subtree); 78 fRoot.fBounds = this->computeBounds(fRoot.fChild.subtree); 93 fRoot.fBounds = fDeferredInserts[0].fBounds; 110 if (!this->isEmpty() && SkIRect::IntersectsNoEmptyCheck(fRoot.fBounds, query)) { 136 root->child(childIndex)->fBounds = this->computeBounds( 165 branch->fBounds = this->computeBounds(newSibling); 184 const SkIRect& subtreeBounds = root->child(i)->fBounds; 185 int32_t areaIncrease = get_area_increase(subtreeBounds, branch->fBounds); [all...] |
SkRegion.cpp | 73 fBounds.set(0, 0, 0, 0); 123 SkTSwap<SkIRect>(fBounds, other.fBounds); 138 fBounds.set(0, 0, 0, 0); 149 fBounds.set(left, top, right, bottom); 162 fBounds = src.fBounds; 229 *itop = fBounds.fTop; 230 *ibot = fBounds.fBottom; 284 if (SkRegion::RunsAreARect(runs, count, &fBounds)) { [all...] |
/external/chromium_org/third_party/skia/include/gpu/ |
GrGlyph.h | 28 GrIRect16 fBounds; 35 fBounds.set(bounds); 46 int width() const { return fBounds.width(); } 47 int height() const { return fBounds.height(); } 48 bool isEmpty() const { return fBounds.isEmpty(); }
|
/external/chromium_org/third_party/skia/src/effects/ |
SkStippleMaskFilter.cpp | 20 dst->fBounds = src.fBounds; 21 dst->fRowBytes = dst->fBounds.width(); 36 for (int y = 0; y < src.fBounds.height(); ++y) { 37 for (int x = 0; x < src.fBounds.width(); ++x) {
|
/external/skia/include/gpu/ |
GrGlyph.h | 28 GrIRect16 fBounds; 35 fBounds.set(bounds); 46 int width() const { return fBounds.width(); } 47 int height() const { return fBounds.height(); } 48 bool isEmpty() const { return fBounds.isEmpty(); }
|
/external/skia/src/effects/ |
SkStippleMaskFilter.cpp | 20 dst->fBounds = src.fBounds; 21 dst->fRowBytes = dst->fBounds.width(); 36 for (int y = 0; y < src.fBounds.height(); ++y) { 37 for (int x = 0; x < src.fBounds.width(); ++x) {
|