Home
last modified time | relevance | path

Searched refs:PWL_MIN (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Icon.cpp240 fMinScale = PWL_MIN(fHScale,fVScale); in GetScale()
DPWL_Note.cpp752 …rcSubject.right = PWL_MIN(rcSubject.left + m_pSubject->GetContentRect().Width() + 1.0f, rcClient.r… in RePosChildWnd()
1363 …rcSubject.right = PWL_MIN(rcSubject.left + m_pSubject->GetContentRect().Width() + 1.0f, rcDate.lef… in RePosNoteChildren()
1380 …rcAuthor.right = PWL_MIN(rcSubject.left + m_pAuthor->GetContentRect().Width() + 1.0f, rcOptions.le… in RePosNoteChildren()
DPWL_Utils.cpp76 rcRet.left = PWL_MIN(rect1.left,rect2.left); in MaxRect()
77 rcRet.bottom = PWL_MIN(rect1.bottom,rect2.bottom); in MaxRect()
/external/pdfium/fpdfsdk/include/pdfwindow/
DPWL_Utils.h10 template<class T> T PWL_MIN (const T & i, const T & j) { return ((i < j) ? i : j); } in PWL_MIN() function