Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dctypeset.cpp295 int32_t nTotalWords = in SplitLines() local
298 if (nTotalWords > 0) { in SplitLines()
300 while (i < nTotalWords) { in SplitLines()
384 if (nLineHead <= nTotalWords - 1) { in SplitLines()
385 nLineTail = nTotalWords - 1; in SplitLines()
Dcpdf_variabletext.cpp219 int32_t nTotalWords = GetTotalWords(); in InsertWord() local
220 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertWord()
222 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertWord()
234 int32_t nTotalWords = GetTotalWords(); in InsertSection() local
235 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertSection()
237 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertSection()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.cpp1757 int32_t nTotalWords = m_pVT->GetTotalWords(); in IsTextFull() local
1761 return IsTextOverflow() || (nLimitChar > 0 && nTotalWords >= nLimitChar) || in IsTextFull()
1762 (nCharArray > 0 && nTotalWords >= nCharArray); in IsTextFull()