Searched refs:nTotalWords (Results 1 – 3 of 3) sorted by relevance
196 int32_t nTotalWords = GetTotalWords(); in InsertWord() local197 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertWord()199 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertWord()211 int32_t nTotalWords = GetTotalWords(); in InsertSection() local212 if (m_nLimitChar > 0 && nTotalWords >= m_nLimitChar) in InsertSection()214 if (m_nCharArray > 0 && nTotalWords >= m_nCharArray) in InsertSection()
557 int32_t nTotalWords = fxcrt::CollectionSize<int32_t>(m_WordArray); in SplitLines() local560 while (i < nTotalWords) { in SplitLines()643 if (nLineHead <= nTotalWords - 1) { in SplitLines()644 nLineTail = nTotalWords - 1; in SplitLines()
1831 int32_t nTotalWords = m_pVT->GetTotalWords(); in IsTextFull() local1835 return IsTextOverflow() || (nLimitChar > 0 && nTotalWords >= nLimitChar) || in IsTextFull()1836 (nCharArray > 0 && nTotalWords >= nCharArray); in IsTextFull()