/external/skia/include/views/animated/ |
H A D | SkBorderView.h | 25 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 D | SkPathOpsRect.h | 13 double fLeft, fTop, fRight, fBottom; member in struct:SkDRect 19 fBottom = SkTMax(fBottom, pt.fY); 24 && approximately_between(fTop, pt.fY, fBottom); 32 SkASSERT(fTop <= fBottom); 34 SkASSERT(r.fTop <= r.fBottom); 35 return r.fLeft <= fRight && fLeft <= r.fRight && r.fTop <= fBottom && fTop <= r.fBottom; 40 fTop = fBottom = pt.fY; 48 return fBottom [all...] |
/external/skia/include/gpu/ |
H A D | GrRect.h | 15 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);
|
/external/skia/src/gpu/gl/ |
H A D | GrGLIRect.h | 22 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/pdfium/fpdfsdk/src/pdfwindow/ |
H A D | PWL_Icon.cpp | 156 void CPWL_Icon::GetIconPosition(FX_FLOAT & fLeft, FX_FLOAT & fBottom) argument 160 //m_pIconFit->GetIconPosition(fLeft,fBottom); 162 fBottom = 0.0f; 168 if (dwCount > 1) fBottom = pA->GetNumber(1); 174 fBottom = 0.0f; 249 FX_FLOAT fLeft,fBottom; local 251 this->GetIconPosition(fLeft,fBottom); 270 y = (fPlateHeight - fImageFactHeight) * fBottom;
|
H A D | PWL_ScrollBar.cpp | 1019 FX_FLOAT fLeft,fRight,fTop,fBottom; local 1043 fBottom = TrueToFace(m_sData.fScrollPos + m_sData.fClientWidth); 1046 if (IsFloatSmaller(fTop - fBottom, PWL_SCROLLBAR_POSBUTTON_MINWIDTH)) 1047 fBottom = fTop - PWL_SCROLLBAR_POSBUTTON_MINWIDTH; 1049 if (IsFloatSmaller(fBottom, rcPosArea.bottom)) 1051 fBottom = rcPosArea.bottom; 1052 fTop = fBottom + PWL_SCROLLBAR_POSBUTTON_MINWIDTH; 1056 fBottom,
|
/external/skia/include/core/ |
H A D | SkRect.h | 21 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 D | SkPaint.h | 775 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 D | doc_utils.cpp | 678 void CPDF_IconFit::GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom) argument 680 fLeft = fBottom = 0.5; 691 fBottom = pA->GetNumber(1);
|
H A D | doc_ap.cpp | 723 FX_FLOAT fBottom = rect.bottom; local 732 sAppStream << fLeft << " " << fBottom << " " << fRight - fLeft << " " << fTop - fBottom << " re\n"; 733 sAppStream << fLeft + fWidth << " " << fBottom + fWidth << " " 734 << fRight - fLeft - fWidth * 2 << " " << fTop - fBottom - fWidth * 2 << " re\n"; 743 sAppStream << fLeft + fWidth / 2 << " " << fBottom + fWidth / 2 << " m\n"; 746 sAppStream << fRight - fWidth / 2 << " " << fBottom + fWidth / 2 << " l\n"; 747 sAppStream << fLeft + fWidth / 2 << " " << fBottom + fWidth / 2 << " l S\n"; 755 sAppStream << fLeft + fHalfWidth << " " << fBottom + fHalfWidth << " m\n"; 760 sAppStream << fLeft + fHalfWidth * 2 << " " << fBottom [all...] |
H A D | doc_vt.cpp | 194 FX_FLOAT fBottom = 0; local 198 fBottom = pLine->m_LineInfo.fLineY - pLine->m_LineInfo.fLineDescent; 202 if (IsFloatSmaller(point.y, fBottom)) { 209 } else if (IsFloatBigger(point.y, fBottom)) {
|
/external/pdfium/fpdfsdk/src/formfiller/ |
H A D | FFL_IFormFiller.cpp | 741 FX_FLOAT fBottom = 0.0f; local 749 fBottom = rcAnnot.bottom - rcPageView.bottom; 753 fBottom = rcPageView.right - rcAnnot.right; 757 fBottom = rcPageView.top - rcAnnot.top; 761 fBottom = rcAnnot.left - rcPageView.left; 782 if (fBottom > fMaxListBoxHeight) 796 if (fTop > fBottom) 803 fFactHeight = fBottom;
|
/external/skia/src/gpu/ |
H A D | GrTessellatingPathRenderer.cpp | 237 , fBottom(bottom) 250 Vertex* fBottom; // The bottom vertex in vertex-sort-order. member in struct:__anon13994::Edge 272 fDX = static_cast<double>(fBottom->fPoint.fX) - fTop->fPoint.fX; 273 fDY = static_cast<double>(fBottom->fPoint.fY) - fTop->fPoint.fY; 274 fC = static_cast<double>(fTop->fPoint.fY) * fBottom->fPoint.fX - 275 static_cast<double>(fTop->fPoint.fX) * fBottom->fPoint.fY; 279 fTop->fID, fBottom->fID, 280 other.fTop->fID, other.fBottom->fID); 281 if (fTop == other.fTop || fBottom == other.fBottom) { [all...] |
/external/pdfium/fpdfsdk/src/javascript/ |
H A D | Field.cpp | 597 FX_FLOAT fLeft,fBottom; local 598 IconFit.GetIconPosition(fLeft,fBottom); 648 FX_FLOAT fLeft,fBottom; local 649 IconFit.GetIconPosition(fLeft,fBottom); 651 vp << (FX_INT32)fBottom;
|
/external/skia/src/core/ |
H A D | SkAAClip.cpp | 122 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...] |
/external/skia/src/utils/ |
H A D | SkLua.cpp | 290 setfield_scalar(fL, "bottom", r.fBottom); 1045 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0) member in struct:FontMetrics 1061 setfield_scalar(L, "bottom", fm.fBottom);
|