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

  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 61 FX_FLOAT* pPosArray = FX_Alloc(FX_FLOAT, count * 2);
62 if (pPosArray) {
63 pText->CalcCharPos(pPosArray);
86 FX_FLOAT char_left = pPosArray ? pPosArray[cc * 2] : char_box.left * pText->m_TextState.GetFontSize() / 1000;
87 FX_FLOAT char_right = pPosArray ? pPosArray[cc * 2 + 1] : char_box.right * pText->m_TextState.GetFontSize() / 1000;
99 if (pPosArray) {
100 FX_Free(pPosArray);
106 pPosArray[ii] *= ratio_h;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 527 void CPDF_TextObject::CalcCharPos(FX_FLOAT* pPosArray) const
544 pPosArray[index++] = i ? m_pCharPos[i - 1] : 0;
552 pPosArray[index] = pPosArray[index - 1] + charwidth;
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_pageobj.h 577 void CalcCharPos(FX_FLOAT* pPosArray) const;

Completed in 770 milliseconds