Lines Matching refs:i

97 		for (sal_Int32 i = 0; i < CACHE_MAX; i++)  in xdictionary()  local
98 cache[i].size = 0; in xdictionary()
109 for (sal_Int32 i = 0; i < CACHE_MAX; i++) { in ~xdictionary() local
110 if (cache[i].size > 0) { in ~xdictionary()
111 delete cache[i].contents; in ~xdictionary()
112 delete cache[i].wordboundary; in ~xdictionary()
146 for (sal_uInt32 i = end; i > begin; i--) { in getLongestMatch() local
147 sal_Int32 len = lenArray[i] - lenArray[i - 1]; in getLongestMatch()
149 const sal_Unicode *dstr = dataArea + lenArray[i-1]; in getLongestMatch()
182 for (sal_Int32 i = 0; i < length; i++) in equals() local
183 if (contents[i] != str[i + boundary.startPos]) return sal_False; in equals()
265 sal_Int32 i = 0; // loop variable in getCache() local
266 while (aCache.wordboundary[i] < aCache.length) { in getCache()
269 … while (u_isWhitespace((sal_uInt32)text[wordBoundary.startPos + aCache.wordboundary[i] + len])) in getCache()
273 const sal_Unicode *str = text + wordBoundary.startPos + aCache.wordboundary[i]; in getCache()
274 sal_Int32 slen = aCache.length - aCache.wordboundary[i]; in getCache()
291 aCache.wordboundary[i+1] = aCache.wordboundary[i] + count; in getCache()
292 i++; in getCache()
296 … sal_Int32 cBoundary = cellBoundary[aCache.wordboundary[i] + wordBoundary.startPos - 1]; in getCache()
298 aCache.wordboundary[i] = cBoundary - wordBoundary.startPos; in getCache()
305 aCache.wordboundary[i+1] = aCache.wordboundary[i] + len; in getCache()
306 i++; in getCache()
310 … sal_Int32 cBoundary = cellBoundary[aCache.wordboundary[i] + wordBoundary.startPos - 1]; in getCache()
312 aCache.wordboundary[i] = cBoundary - wordBoundary.startPos; in getCache()
317 aCache.wordboundary[i + 1] = aCache.length + 1; in getCache()
354 sal_Int32 i = 0; in getWordBoundary() local
356 while (aCache.wordboundary[i] <= anyPos - boundary.startPos) i++; in getWordBoundary()
358 sal_Int32 startPos = aCache.wordboundary[i - 1]; in getWordBoundary()
365 i--; in getWordBoundary()
368 rText.iterateCodePoints(&boundary.endPos, aCache.wordboundary[i]); in getWordBoundary()
369 rText.iterateCodePoints(&boundary.startPos, aCache.wordboundary[i-1]); in getWordBoundary()