Home
last modified time | relevance | path

Searched refs:IsFloatBigger (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/fpdfsdk/pwl/
Dcpwl_combo_box.cpp116 if (IsFloatBigger(rectWnd.right - rectWnd.left, in DrawThisAppearance()
118 IsFloatBigger(rectWnd.top - rectWnd.bottom, in DrawThisAppearance()
415 if (!IsFloatBigger(fListHeight, 0.0f)) in SetPopup()
445 if (!IsFloatBigger(fPopupRet, 0.0f)) in SetPopup()
Dcpwl_scroll_bar.cpp51 return (IsFloatBigger(x, fMin) || IsFloatEqual(x, fMin)) && in In()
76 if (IsFloatBigger(fScrollPos, ScrollRange.fMax)) in SetScrollRange()
380 if (IsFloatBigger(rcClient.top - rcClient.bottom, in RePosChildWnd()
390 if (IsFloatBigger(fBWidth, 0)) { in RePosChildWnd()
785 if (IsFloatBigger(fNewPos, m_sData.ScrollRange.fMax)) { in OnPosButtonMouseMove()
798 if (IsFloatBigger(fNewPos, m_sData.ScrollRange.fMax)) { in OnPosButtonMouseMove()
Dcpwl_list_impl.cpp428 } else if (IsFloatBigger(rcItemCtrl.top, rcPlate.top)) { in ScrollToListItem()
429 if (IsFloatBigger(rcItemCtrl.bottom, rcPlate.bottom)) { in ScrollToListItem()
464 } else if (IsFloatBigger(fy, rcContent.top)) { in SetScrollPosY()
540 if (IsFloatBigger(pt.y, rcListItem.top)) in GetItemIndex()
Dcpwl_edit_impl.cpp1061 } else if (IsFloatBigger(m_ptScrollPos.x, in SetScrollLimit()
1073 } else if (IsFloatBigger(m_ptScrollPos.y, rcContent.top)) { in SetScrollLimit()
1112 } else if (IsFloatBigger(ptHeadEdit.x, rcPlate.right)) { in ScrollToCaret()
1123 } else if (IsFloatBigger(ptHeadEdit.y, rcPlate.top)) { in ScrollToCaret()
1124 if (IsFloatBigger(ptFootEdit.y, rcPlate.bottom)) { in ScrollToCaret()
1771 IsFloatBigger(rcContent.Height(), rcPlate.Height())) { in IsTextOverflow()
1775 if (IsFloatBigger(rcContent.Width(), rcPlate.Width())) in IsTextOverflow()
Dcpwl_list_box.cpp45 if (IsFloatBigger(Info.fPlateWidth, Info.fContentMax - Info.fContentMin) || in IOnSetScrollInfoY()
Dcpwl_appstream.cpp1077 if (IsFloatBigger(rcBBox.right - rcBBox.left, 6) && in GetDropButtonAppStream()
1078 IsFloatBigger(rcBBox.top - rcBBox.bottom, 6)) { in GetDropButtonAppStream()
/external/pdfium/core/fpdfdoc/
Dcsection.cpp139 if (IsFloatBigger(point.y, fTop)) in SearchWordPlace()
148 if (IsFloatBigger(point.y, fBottom)) { in SearchWordPlace()
Dcpdf_variabletext.cpp441 if (IsFloatBigger(pt.y, pSection->m_Rect.top)) in SearchWordPlace()
443 if (IsFloatBigger(pSection->m_Rect.bottom, pt.y)) in SearchWordPlace()
450 if (IsFloatBigger(pt.y, pSection->m_Rect.bottom)) { in SearchWordPlace()
872 if (IsFloatBigger(szTotal.width, GetPlateWidth()) || in IsBigger()
873 IsFloatBigger(szTotal.height, GetPlateHeight())) { in IsBigger()
Dcpvt_generateap.cpp1191 if (IsFloatBigger(rcButton.Width(), 6) && in GenerateFormAP()
1192 IsFloatBigger(rcButton.Height(), 6)) { in GenerateFormAP()
/external/pdfium/core/fxcrt/
Dfx_system.h83 #define IsFloatBigger(fa, fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb))) macro