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

  /external/pdfium/xfa/src/fgas/src/layout/
fx_textbreak.cpp 78 int32_t iLinePos = FXSYS_round(fLinePos * 20000.0f);
79 if (iLinePos < 0) {
80 iLinePos = 0;
82 if (iLinePos > m_iLineWidth) {
83 iLinePos = m_iLineWidth;
85 m_pCurLine->m_iStart = iLinePos;
86 m_pCurLine->m_iWidth += iLinePos;
    [all...]
fx_rtfbreak.cpp 74 int32_t iLinePos = FXSYS_round(fLinePos * 20000.0f);
75 iLinePos = std::min(iLinePos, m_iBoundaryEnd);
76 iLinePos = std::max(iLinePos, m_iBoundaryStart);
77 m_pCurLine->m_iStart = iLinePos;
    [all...]

Completed in 46 milliseconds