Searched defs:rectIndex (Results 1 - 2 of 2) sorted by relevance

/external/pdfium/core/src/reflow/
H A Dreflowedtextpage.cpp289 void CRF_TextPage::GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const argument
291 if(m_rectArray.GetSize() <= rectIndex) {
294 left = m_rectArray[rectIndex].left;
295 top = m_rectArray[rectIndex].top;
296 right = m_rectArray[rectIndex].right;
297 bottom = m_rectArray[rectIndex].bottom;
299 FX_BOOL CRF_TextPage::GetBaselineRotate(int rectIndex, int& Rotate) argument
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp717 void CPDF_TextPage::GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const argument
722 if (!m_IsParsered || rectIndex < 0 || rectIndex >= m_SelRects.GetSize()) {
725 left = m_SelRects.GetAt(rectIndex).left;
726 top = m_SelRects.GetAt(rectIndex).top;
727 right = m_SelRects.GetAt(rectIndex).right;
728 bottom = m_SelRects.GetAt(rectIndex).bottom;
789 FX_BOOL CPDF_TextPage::GetBaselineRotate(int rectIndex, int& Rotate) argument
794 if (!m_IsParsered || rectIndex < 0 || rectIndex > m_SelRect
[all...]

Completed in 1811 milliseconds