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

12

/external/skia/include/views/animated/
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/pathops/
H A DSkPathOpsRect.h13 double fLeft, fTop, fRight, fBottom; member in struct:SkDRect
19 fBottom = SkTMax(fBottom, pt.fY);
24 && approximately_between(fTop, pt.fY, fBottom);
31 SkASSERT(fTop <= fBottom);
33 SkASSERT(r.fTop <= r.fBottom);
34 return r.fLeft <= fRight && fLeft <= r.fRight && r.fTop <= fBottom && fTop <= r.fBottom;
39 fTop = fBottom = pt.fY;
47 return fBottom
[all...]
/external/pdfium/xfa/src/fwl/src/theme/
H A Dpushbuttontp.cpp41 FX_FLOAT fBottom = rect.bottom(); local
47 strokePath.LineTo(fRight, fBottom - PUSHBUTTON_SIZE_Corner);
48 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, fBottom);
49 strokePath.LineTo(rect.left + PUSHBUTTON_SIZE_Corner, fBottom);
50 strokePath.LineTo(rect.left, fBottom - PUSHBUTTON_SIZE_Corner);
H A Dscrollbartp.cpp227 FX_FLOAT fBottom = pRect->bottom(); local
233 path.AddRectangle(pRect->left, fBottom - 1, pRect->width, 1);
243 FX_FLOAT y2 = bVert ? pRect->top : fBottom - 1;
H A Dformtp.cpp283 FX_FLOAT fBottom, fRight; local
284 fBottom = pRect->bottom();
291 path.LineTo(pRect->left, fBottom - 1);
292 path.LineTo(fRight - 1, fBottom - 1);
299 path.LineTo(pRect->left + 1, fBottom - 2);
300 path.LineTo(fRight - 2, fBottom - 2);
307 path.LineTo(pRect->left + 2, fBottom - 3);
308 path.LineTo(fRight - 3, fBottom - 3);
315 path.LineTo(pRect->left + 3, fBottom - 4);
316 path.LineTo(fRight - 4, fBottom
333 FX_FLOAT fBottom, fRight; local
388 FX_FLOAT fBottom = pRect->bottom(); local
455 FX_FLOAT fBottom = pRect->bottom(); local
[all...]
H A Dcheckboxtp.cpp114 FX_FLOAT fBottom = pRect->bottom(); local
163 DrawAxialShading(pGraphics, pRect->left - 1, pRect->top - 1, fRight, fBottom,
278 FX_FLOAT fBottom = pRtSign->bottom(); local
279 path.AddLine(pRtSign->left, pRtSign->top, fRight, fBottom);
280 path.AddLine(pRtSign->left, fBottom, fRight, pRtSign->top);
296 FX_FLOAT fBottom = pRtSign->bottom(); local
299 path.LineTo(pRtSign->left + fWidth / 2, fBottom);
328 FX_FLOAT fBottom = pRtSign->bottom(); local
330 (pRtSign->top - fBottom) / (1 + (FX_FLOAT)cos(FX_PI / 5.0f));
333 (pRtSign->top + fBottom) / 2.
462 FX_FLOAT fBottom = CHECKBOX_SIZE_SIGNPATH; local
[all...]
H A Dwidgettp.cpp301 FX_FLOAT fBottom = pRect->bottom(); local
307 pathLT.MoveTo(fLeft, fBottom - fHalfWidth);
312 pathLT.LineTo(fLeft + fHalfWidth, fBottom - fHalfWidth);
313 pathLT.LineTo(fLeft, fBottom - fHalfWidth);
318 pathLT.MoveTo(fLeft + fHalfWidth, fBottom - fWidth);
323 pathLT.LineTo(fLeft + fWidth, fBottom - fWidth);
324 pathLT.LineTo(fLeft + fHalfWidth, fBottom - fWidth);
331 pathRB.LineTo(fRight - fHalfWidth, fBottom - fHalfWidth);
332 pathRB.LineTo(fLeft + fHalfWidth, fBottom - fHalfWidth);
333 pathRB.LineTo(fLeft + fHalfWidth, fBottom
644 FX_FLOAT fBottom = pRect->bottom(); local
[all...]
/external/skia/src/gpu/
H A DGrRect.h15 int16_t fLeft, fTop, fRight, fBottom; member in struct:GrIRect16
36 int height() const { return fBottom - fTop; }
38 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
46 fBottom = bottom;
53 fBottom = SkToS16(r.fBottom);
H A DGrTessellator.cpp235 , fBottom(bottom)
248 Vertex* fBottom; // The bottom vertex in vertex-sort-order. member in struct:__anon16907::Edge
270 fDX = static_cast<double>(fBottom->fPoint.fX) - fTop->fPoint.fX;
271 fDY = static_cast<double>(fBottom->fPoint.fY) - fTop->fPoint.fY;
272 fC = static_cast<double>(fTop->fPoint.fY) * fBottom->fPoint.fX -
273 static_cast<double>(fTop->fPoint.fX) * fBottom->fPoint.fY;
277 fTop->fID, fBottom->fID,
278 other.fTop->fID, other.fBottom->fID);
279 if (fTop == other.fTop || fBottom == other.fBottom) {
[all...]
/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));
51 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
53 fBottom = glRect.fBottom + topOffset;
59 SkASSERT(fBottom >= 0);
65 fBottom <= glRect.fBottom
[all...]
/external/skia/platform_tools/android/apps/canvasproof/src/main/jni/
H A Dorg_skia_canvasproof_GaneshPictureRenderer.cpp109 jfieldID fLeft, fTop, fRight, fBottom; member in struct:__anon16749::AndroidRectHelper
111 : fLeft(nullptr), fTop(nullptr), fRight(nullptr), fBottom(nullptr) {}
119 fBottom = env->GetFieldID(rectClass, "bottom", "I");
145 env->SetIntField(androidGraphicsRect, help.fBottom, (jint)(iRect.bottom()));
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Icon.cpp126 void CPWL_Icon::GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom) { argument
129 fBottom = 0.0f;
137 fBottom = pA->GetNumber(1);
141 fBottom = 0.0f;
200 FX_FLOAT fLeft, fBottom; local
202 GetIconPosition(fLeft, fBottom);
221 y = (fPlateHeight - fImageFactHeight) * fBottom;
H A DPWL_ScrollBar.cpp905 FX_FLOAT fLeft, fRight, fTop, fBottom; local
924 fBottom = TrueToFace(m_sData.fScrollPos + m_sData.fClientWidth);
927 if (IsFloatSmaller(fTop - fBottom, PWL_SCROLLBAR_POSBUTTON_MINWIDTH))
928 fBottom = fTop - PWL_SCROLLBAR_POSBUTTON_MINWIDTH;
930 if (IsFloatSmaller(fBottom, rcPosArea.bottom)) {
931 fBottom = rcPosArea.bottom;
932 fTop = fBottom + PWL_SCROLLBAR_POSBUTTON_MINWIDTH;
935 rcPosButton = CPDF_Rect(rcPosArea.left, fBottom, rcPosArea.right, fTop);
/external/skia/include/core/
H A DSkRect.h21 int32_t fLeft, fTop, fRight, fBottom; member in struct:SkIRect
62 int bottom() const { return fBottom; }
78 int height() const { return fBottom - fTop; }
98 int centerY() const { return (fBottom + fTop) >> 1; }
103 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
108 SK_MaxS32 == fBottom; }
120 SkIsS16(fRight) && SkIsS16(fBottom);
131 fBottom = bottom;
142 fBottom = y + height;
150 fRight = fBottom
[all...]
H A DSkPaint.h734 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0) member in struct:SkPaint::FontMetrics
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_utils.cpp659 void CPDF_IconFit::GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom) { argument
660 fLeft = fBottom = 0.5;
671 fBottom = pA->GetNumber(1);
H A Ddoc_ap.cpp809 FX_FLOAT fBottom = rect.bottom; local
818 sAppStream << fLeft << " " << fBottom << " " << fRight - fLeft << " "
819 << fTop - fBottom << " re\n";
820 sAppStream << fLeft + fWidth << " " << fBottom + fWidth << " "
822 << fTop - fBottom - fWidth * 2 << " re\n";
833 sAppStream << fLeft + fWidth / 2 << " " << fBottom + fWidth / 2
839 sAppStream << fRight - fWidth / 2 << " " << fBottom + fWidth / 2
841 sAppStream << fLeft + fWidth / 2 << " " << fBottom + fWidth / 2
850 sAppStream << fLeft + fHalfWidth << " " << fBottom + fHalfWidth
861 << fBottom
[all...]
H A Ddoc_vt.cpp178 FX_FLOAT fBottom = 0; local
183 fBottom = pLine->m_LineInfo.fLineY - pLine->m_LineInfo.fLineDescent;
187 if (IsFloatSmaller(point.y, fBottom)) {
194 } else if (IsFloatBigger(point.y, fBottom)) {
/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_IFormFiller.cpp581 FX_FLOAT fBottom = 0.0f; local
588 fBottom = rcAnnot.bottom - rcPageView.bottom;
592 fBottom = rcPageView.right - rcAnnot.right;
596 fBottom = rcPageView.top - rcAnnot.top;
600 fBottom = rcAnnot.left - rcPageView.left;
617 if (fBottom > fMaxListBoxHeight) {
625 if (fTop > fBottom) {
629 fFactHeight = fBottom;
/external/pdfium/xfa/src/fwl/src/basewidget/
H A Dfwl_scrollbarimp.cpp449 FX_FLOAT fBottom = m_rtThumb.bottom(); local
452 FX_FLOAT iy = (m_rtThumb.top + fBottom) / 2;
/external/pdfium/xfa/src/fwl/src/core/
H A Dfwl_widgetimp.cpp746 FX_FLOAT fBottom = rtAnchor.bottom() + rtPopup.height;
748 if (fBottom + fy > fScreenHeight) {
775 FX_FLOAT fBottom = rtAnchor.bottom() + fPopHeight; local
777 if (fBottom + fy > fScreenHeight) {
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_textlayout.cpp1292 void CXFA_TextLayout::UpdateAlign(FX_FLOAT fHeight, FX_FLOAT fBottom) { argument
1293 fHeight -= fBottom;
H A Dxfa_ffwidget.cpp1706 FX_FLOAT fBottom = rt.bottom(); local
1710 pathLT.MoveTo(rt.left, fBottom);
1715 pathLT.LineTo(rt.left + fLineWidth, fBottom - fLineWidth);
1716 pathLT.LineTo(rt.left, fBottom);
1723 pathRB.LineTo(fRight, fBottom);
1724 pathRB.LineTo(rt.left, fBottom);
1725 pathRB.LineTo(rt.left + fLineWidth, fBottom - fLineWidth);
1726 pathRB.LineTo(fRight - fLineWidth, fBottom - fLineWidth);
/external/pdfium/fpdfsdk/src/javascript/
H A DField.cpp505 FX_FLOAT fLeft, fBottom; local
506 IconFit.GetIconPosition(fLeft, fBottom);
554 FX_FLOAT fLeft, fBottom; local
555 IconFit.GetIconPosition(fLeft, fBottom);
557 vp << (int32_t)fBottom;
/external/skia/src/core/
H A DSkAAClip.cpp122 int bottom() const { return fBottom; }
131 int fTop, fBottom; member in class:SkAAClip::Iter
138 fTop = fBottom = clip.fBounds.fBottom;
152 fBottom = clip.fBounds.fTop + fCurrYOff->fY + 1;
162 fTop = fBottom;
165 fBottom = kMaxInt32;
168 fBottom += curr->fY - prev->fY;
580 fBounds.fBottom = fBounds.fTop + yoff->fY + 1;
592 // possible our fBounds.fBottom i
[all...]

Completed in 637 milliseconds

12