Searched refs:nTotalWords (Results 1 – 3 of 3) sorted by relevance
295 int32_t nTotalWords = in SplitLines() local298 if (nTotalWords > 0) { in SplitLines()300 while (i < nTotalWords) { in SplitLines()384 if (nLineHead <= nTotalWords - 1) { in SplitLines()385 nLineTail = nTotalWords - 1; in SplitLines()
219 int32_t nTotalWords = GetTotalWords(); in InsertWord() local220 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() local235 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertSection()237 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertSection()
1757 int32_t nTotalWords = m_pVT->GetTotalWords(); in IsTextFull() local1761 return IsTextOverflow() || (nLimitChar > 0 && nTotalWords >= nLimitChar) || in IsTextFull()1762 (nCharArray > 0 && nTotalWords >= nCharArray); in IsTextFull()