Home
last modified time | relevance | path

Searched refs:FX_EDIT_IsFloatBigger (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_list.cpp223 if (FX_EDIT_IsFloatBigger(pt.y, rcListItem.top)) in GetItemIndex()
889 else if (FX_EDIT_IsFloatBigger(rcItemCtrl.top, rcPlate.top)) in ScrollToListItem()
891 if (FX_EDIT_IsFloatBigger(rcItemCtrl.bottom, rcPlate.bottom)) in ScrollToListItem()
937 else if (FX_EDIT_IsFloatBigger(fy, rcContent.top)) in SetScrollPosY()
Dfxet_edit.cpp2299 else if (FX_EDIT_IsFloatBigger(m_ptScrollPos.x, rcContent.right - rcPlate.Width())) in SetScrollLimit()
2315 else if (FX_EDIT_IsFloatBigger(m_ptScrollPos.y, rcContent.top)) in SetScrollLimit()
2366 else if (FX_EDIT_IsFloatBigger(ptHeadEdit.x, rcPlate.right)) in ScrollToCaret()
2382 else if (FX_EDIT_IsFloatBigger(ptHeadEdit.y, rcPlate.top)) in ScrollToCaret()
2384 if (FX_EDIT_IsFloatBigger(ptFootEdit.y, rcPlate.bottom)) in ScrollToCaret()
3415 if (FX_EDIT_IsFloatBigger(rcContent.Height(),rcPlate.Height())) return TRUE; in IsTextOverflow()
3418 if (FX_EDIT_IsFloatBigger(rcContent.Width(),rcPlate.Width())) return TRUE; in IsTextOverflow()
/external/pdfium/fpdfsdk/include/fxedit/
Dfxet_edit.h27 #define FX_EDIT_IsFloatBigger(fa,fb) (fa > fb && !FX_EDIT_IsFloatEqual(fa,fb)) macro