HomeSort by relevance Sort by last modified time
    Searched refs:rectIndex (Results 1 - 6 of 6) sorted by null

  /external/pdfium/core/src/reflow/
reflowedtextpage.h 55 virtual void GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const;
56 virtual FX_BOOL GetBaselineRotate(int rectIndex, int& Rotate);
reflowedtextpage.cpp 282 void CRF_TextPage::GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const
284 if(m_rectArray.GetSize() <= rectIndex) {
287 left = m_rectArray[rectIndex].left;
288 top = m_rectArray[rectIndex].top;
289 right = m_rectArray[rectIndex].right;
290 bottom = m_rectArray[rectIndex].bottom;
292 FX_BOOL CRF_TextPage::GetBaselineRotate(int rectIndex, int& Rotate)
  /external/pdfium/core/include/fpdftext/
fpdf_text.h 112 virtual void GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const = 0;
114 virtual FX_BOOL GetBaselineRotate(int rectIndex, int& Rotate) = 0;
  /external/pdfium/core/src/fpdftext/
text_int.h 81 virtual void GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top
83 virtual FX_BOOL GetBaselineRotate(int rectIndex, int& Rotate);
fpdf_text_int.cpp 752 void CPDF_TextPage::GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const
757 if (!m_IsParsered || rectIndex < 0 || rectIndex >= m_SelRects.GetSize()) {
760 left = m_SelRects.GetAt(rectIndex).left;
761 top = m_SelRects.GetAt(rectIndex).top;
762 right = m_SelRects.GetAt(rectIndex).right;
763 bottom = m_SelRects.GetAt(rectIndex).bottom;
824 FX_BOOL CPDF_TextPage::GetBaselineRotate(int rectIndex, int& Rotate)
829 if (!m_IsParsered || rectIndex < 0 || rectIndex > m_SelRects.GetSize())
    [all...]
  /external/skia/src/gpu/effects/
GrDashingEffect.cpp 546 int rectIndex = 0;
552 setup_dashed_rect(rects[rectIndex], vertices, curVIdx, geom.fSrcRotInv,
561 setup_dashed_rect_pos(rects[rectIndex], curVIdx, geom.fSrcRotInv, verts);
565 rectIndex++;
569 setup_dashed_rect(rects[rectIndex], vertices, curVIdx, geom.fSrcRotInv,
578 setup_dashed_rect_pos(rects[rectIndex], curVIdx, geom.fSrcRotInv, verts);
582 rectIndex++;
586 setup_dashed_rect(rects[rectIndex], vertices, curVIdx, geom.fSrcRotInv,
595 setup_dashed_rect_pos(rects[rectIndex], curVIdx, geom.fSrcRotInv, verts);
599 rectIndex++
    [all...]

Completed in 188 milliseconds