Home
last modified time | relevance | path

Searched refs:nTotalWords (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dctypeset.cpp324 int32_t nTotalWords = in SplitLines() local
328 while (i < nTotalWords) { in SplitLines()
411 if (nLineHead <= nTotalWords - 1) { in SplitLines()
412 nLineTail = nTotalWords - 1; in SplitLines()
Dcpdf_variabletext.cpp207 int32_t nTotalWords = GetTotalWords(); in InsertWord() local
208 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertWord()
210 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertWord()
222 int32_t nTotalWords = GetTotalWords(); in InsertSection() local
223 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertSection()
225 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertSection()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.cpp1781 int32_t nTotalWords = m_pVT->GetTotalWords(); in IsTextFull() local
1785 return IsTextOverflow() || (nLimitChar > 0 && nTotalWords >= nLimitChar) || in IsTextFull()
1786 (nCharArray > 0 && nTotalWords >= nCharArray); in IsTextFull()