Lines Matching refs:startPos

190             if (bounds.endPos - bounds.startPos > 3) {  in _nextWord()
193 + bounds.startPos + "," + bounds.endPos + "): '" + in _nextWord()
194 UnicodeString.substring(bounds.startPos, in _nextWord()
217 if (bounds.endPos - bounds.startPos > 3) { in _previousWord()
220 + bounds.startPos + "," + bounds.endPos + "): '" in _previousWord()
221 + UnicodeString.substring(bounds.startPos, bounds.endPos) in _previousWord()
224 i = bounds.startPos; in _previousWord()
246 int iPos = (iBounds.endPos - iBounds.startPos) / 2 in _getWordBoundary()
247 + iBounds.startPos; in _getWordBoundary()
250 log.println("Expected result is: startPos = " + iBounds.startPos + in _getWordBoundary()
252 log.println("Actual result is: startPos = " + bounds.startPos in _getWordBoundary()
254 + UnicodeString.substring(bounds.startPos, bounds.endPos) + "'"); in _getWordBoundary()
256 bRes = bRes && iBounds.startPos == bounds.startPos; in _getWordBoundary()
277 int iPos = (iBounds.endPos - iBounds.startPos) / 2 in _getWordType()
278 + iBounds.startPos; in _getWordType()
303 boolean isBegin = oObj.isBeginWord(UnicodeString, iBounds.startPos, in _isBeginWord()
307 iBounds.startPos + 1, locale, WordType.ANY_WORD); in _isBeginWord()
310 log.println("At position + " + iBounds.startPos in _isBeginWord()
312 log.println("At position + " + (iBounds.startPos + 1) in _isBeginWord()
575 int startPos = oObj.beginOfCharBlock(UnicodeString, iPos, in _beginOfCharBlock() local
580 vCharBlockBounds.add(new Boundary(startPos, endPos)); in _beginOfCharBlock()
582 + startPos + "," + endPos + "]; Type = " + charType); in _beginOfCharBlock()
588 int startPos = ((Boundary)vCharBlockBounds.get(i + 1)).startPos; in _beginOfCharBlock() local
589 bCharBlockRes &= endPos == startPos; in _beginOfCharBlock()
593 int startPos = ((Boundary)vCharBlockBounds.get(0)).startPos; in _beginOfCharBlock() local
594 bCharBlockRes &= startPos == 0; in _beginOfCharBlock()
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()
664 if (iPos != bounds.startPos) { in _previousCharBlock()
668 + ") should return " + bounds.startPos); in _previousCharBlock()