Home
last modified time | relevance | path

Searched refs:IsFloatSmaller (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/fpdfsdk/pwl/
Dcpwl_scroll_bar.cpp52 (IsFloatSmaller(x, fMax) || IsFloatEqual(x, fMax)); in In()
74 if (IsFloatSmaller(fScrollPos, ScrollRange.fMin)) in SetScrollRange()
612 if (IsFloatSmaller(m_sData.ScrollRange.GetWidth(), 0.0f)) { in SetScrollRange()
676 if (IsFloatSmaller(fTop - fBottom, kPosButtonMinWidth)) in MovePosButton()
679 if (IsFloatSmaller(fBottom, rcPosArea.bottom)) { in MovePosButton()
781 if (IsFloatSmaller(fNewPos, m_sData.ScrollRange.fMin)) { in OnPosButtonMouseMove()
794 if (IsFloatSmaller(fNewPos, m_sData.ScrollRange.fMin)) { in OnPosButtonMouseMove()
Dcpwl_list_impl.cpp424 if (IsFloatSmaller(rcItemCtrl.bottom, rcPlate.bottom)) { in ScrollToListItem()
425 if (IsFloatSmaller(rcItemCtrl.top, rcPlate.top)) { in ScrollToListItem()
462 if (IsFloatSmaller(fy - rcPlate.Height(), rcContent.bottom)) { in SetScrollPosY()
542 if (IsFloatSmaller(pt.y, rcListItem.bottom)) in GetItemIndex()
Dcpwl_edit_impl.cpp1059 if (IsFloatSmaller(m_ptScrollPos.x, rcContent.left)) { in SetScrollLimit()
1070 if (IsFloatSmaller(m_ptScrollPos.y, in SetScrollLimit()
1109 if (IsFloatSmaller(ptHeadEdit.x, rcPlate.left) || in ScrollToCaret()
1118 if (IsFloatSmaller(ptFootEdit.y, rcPlate.bottom) || in ScrollToCaret()
1120 if (IsFloatSmaller(ptHeadEdit.y, rcPlate.top)) { in ScrollToCaret()
/external/pdfium/core/fpdfdoc/
Dcsection.cpp141 if (IsFloatSmaller(point.y, fBottom)) in SearchWordPlace()
143 if (IsFloatSmaller(point.y, fTop)) { in SearchWordPlace()
Dcpdf_variabletext.cpp445 if (IsFloatSmaller(pt.y, pSection->m_Rect.top)) { in SearchWordPlace()
Dcpvt_generateap.cpp1217 if (IsFloatSmaller(fy, rcBody.bottom)) in GenerateFormAP()
/external/pdfium/core/fxcrt/
Dfx_system.h84 #define IsFloatSmaller(fa, fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb))) macro