HomeSort by relevance Sort by last modified time
    Searched defs:fBounds (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/animator/
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;
SkDisplayList.h 58 SkIRect fBounds;
  /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/animator/
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;
SkDisplayList.h 58 SkIRect 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/include/text/
SkTextLayout.h 52 SkRect fBounds;
  /external/skia/include/text/
SkTextLayout.h 52 SkRect fBounds;
  /external/skia/tests/
ParsePathTest.cpp 33 const SkRect fBounds;
47 const SkRect& expectedBounds = gRec[i].fBounds;
  /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/gpu/effects/
GrConvolutionEffect.h 60 const float* bounds() const { return fBounds; }
90 float fBounds[2];
  /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/gpu/effects/
GrConvolutionEffect.h 60 const float* bounds() const { return fBounds; }
90 float fBounds[2];
  /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/chromium_org/third_party/skia/src/core/
SkAAClip.h 30 const SkIRect& getBounds() const { return fBounds; }
79 SkIRect fBounds;
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...]
  /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...]
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/src/core/
SkAAClip.h 30 const SkIRect& getBounds() const { return fBounds; }
79 SkIRect fBounds;
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...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpContour.h 34 return fBounds.fTop == rh.fBounds.fTop
35 ? fBounds.fLeft < rh.fBounds.fLeft
36 : fBounds.fTop < rh.fBounds.fTop;
86 return fBounds;
167 fBounds.set(SK_ScalarMax, SK_ScalarMax, SK_ScalarMax, SK_ScalarMax);
256 SkPathOpsBounds fBounds;
SkOpSegment.h 28 return fBounds.fTop < rh.fBounds.fTop;
32 return fBounds;
88 return fBounds.fTop == fBounds.fBottom;
92 return fBounds.fLeft == fBounds.fRight;
149 fBounds.set(SK_ScalarMax, SK_ScalarMax, SK_ScalarMax, SK_ScalarMax);
435 SkPathOpsBounds fBounds;
  /external/skia/src/pathops/
SkOpContour.h 34 return fBounds.fTop == rh.fBounds.fTop
35 ? fBounds.fLeft < rh.fBounds.fLeft
36 : fBounds.fTop < rh.fBounds.fTop;
86 return fBounds;
167 fBounds.set(SK_ScalarMax, SK_ScalarMax, SK_ScalarMax, SK_ScalarMax);
256 SkPathOpsBounds fBounds;
SkOpSegment.h 28 return fBounds.fTop < rh.fBounds.fTop;
32 return fBounds;
88 return fBounds.fTop == fBounds.fBottom;
92 return fBounds.fLeft == fBounds.fRight;
149 fBounds.set(SK_ScalarMax, SK_ScalarMax, SK_ScalarMax, SK_ScalarMax);
435 SkPathOpsBounds fBounds;

Completed in 1437 milliseconds

1 2