Lines Matching refs:bounds

188             Boundary bounds = oObj.nextWord  in _nextWord()  local
190 if (bounds.endPos - bounds.startPos > 3) { in _nextWord()
191 vBounds.add( bounds ); in _nextWord()
193 + bounds.startPos + "," + bounds.endPos + "): '" + in _nextWord()
194 UnicodeString.substring(bounds.startPos, in _nextWord()
195 bounds.endPos) + "'"); in _nextWord()
197 i = bounds.endPos - 1; in _nextWord()
215 Boundary bounds = in _previousWord() local
217 if (bounds.endPos - bounds.startPos > 3) { in _previousWord()
218 vPrevBounds.add( bounds ); in _previousWord()
220 + bounds.startPos + "," + bounds.endPos + "): '" in _previousWord()
221 + UnicodeString.substring(bounds.startPos, bounds.endPos) in _previousWord()
224 i = bounds.startPos; in _previousWord()
248 Boundary bounds = oObj.getWordBoundary(UnicodeString, iPos, in _getWordBoundary() local
252 log.println("Actual result is: startPos = " + bounds.startPos in _getWordBoundary()
253 + "; endPos = " + bounds.endPos + " Word is: '" in _getWordBoundary()
254 + UnicodeString.substring(bounds.startPos, bounds.endPos) + "'"); in _getWordBoundary()
256 bRes = bRes && iBounds.startPos == bounds.startPos; in _getWordBoundary()
257 bRes = bRes && iBounds.endPos == bounds.endPos; in _getWordBoundary()
629 Boundary bounds = (Boundary)vCharBlockBounds.get(i); in _nextCharBlock() local
631 if (bounds.startPos - 1 < 0) continue; in _nextCharBlock()
632 int iPos = oObj.nextCharBlock(UnicodeString, bounds.startPos - 1, in _nextCharBlock()
634 if (iPos != bounds.startPos) { in _nextCharBlock()
637 + (bounds.startPos - 1) + ", locale, " + type in _nextCharBlock()
638 + ") should return " + bounds.startPos); in _nextCharBlock()
660 Boundary bounds = (Boundary)vCharBlockBounds.get(i); in _previousCharBlock() local
663 bounds.endPos + 1, locale, type.shortValue()); in _previousCharBlock()
664 if (iPos != bounds.startPos) { in _previousCharBlock()
667 + (bounds.endPos + 1) + ", locale, " + type in _previousCharBlock()
668 + ") should return " + bounds.startPos); in _previousCharBlock()