Searched defs:fBottom (Results 1 - 8 of 8) sorted by relevance

/external/skia/include/gpu/
H A DGrRect.h21 int16_t fLeft, fTop, fRight, fBottom; member in struct:GrIRect16
24 int height() const { return fBottom - fTop; }
26 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
32 fBottom = SkToS16(r.fBottom);
/external/skia/include/views/
H A DSkBorderView.h25 SkScalar getBottom() const { return fBottom; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side member in class:SkBorderView
/external/skia/src/gpu/gl/
H A DGrGLIRect.h22 GrGLint fBottom; member in struct:GrGLIRect
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
49 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
54 GrAssert(fBottom >= 0);
60 fBottom <= glRect.fBottom &&
62 fBottom + fHeight >= glRect.fBottom
[all...]
/external/skia/include/core/
H A DSkRect.h21 int32_t fLeft, fTop, fRight, fBottom; member in struct:SkIRect
56 int bottom() const { return fBottom; }
72 int height() const { return fBottom - fTop; }
77 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
89 SkIsS16(fRight) && SkIsS16(fBottom);
100 fBottom = bottom;
111 fBottom = y + height;
119 fRight = fBottom = SK_MaxS32;
128 fRight = fBottom = SK_MinS32;
138 fBottom
[all...]
H A DSkPaint.h747 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0) member in struct:SkPaint::FontMetrics
/external/skia/src/core/
H A DSkConcaveToTriangles.cpp96 const Vertex* bottom() const { return fBottom; }
99 Vertex* bottom() { return fBottom; }
102 void setBottom(Vertex *bottom) { fBottom = bottom; }
109 Vertex *fLeft, *fRight, *fBottom; member in class:Trapezoid
H A DSkAAClip.cpp120 int bottom() const { return fBottom; }
129 int fTop, fBottom; member in class:SkAAClip::Iter
136 fTop = fBottom = clip.fBounds.fBottom;
148 fBottom = clip.fBounds.fTop + fCurrYOff->fY + 1;
158 fTop = fBottom;
161 fBottom = kMaxInt32;
164 fBottom += curr->fY - prev->fY;
524 fBounds.fBottom = fBounds.fTop + yoff->fY + 1;
536 // possible our fBounds.fBottom i
[all...]
/external/webkit/Source/WebKit/android/plugins/
H A Dandroid_npapi.h442 float fBottom; member in struct:ANPFontMetrics

Completed in 194 milliseconds