Home | History | Annotate | Download | only in method

Lines Matching refs:isOnPunctuation

630         assertFalse(wordIterator.isOnPunctuation(text.indexOf('a')));
631 assertTrue(wordIterator.isOnPunctuation(text.indexOf('!')));
632 assertTrue(wordIterator.isOnPunctuation(text.indexOf('?')));
633 assertFalse(wordIterator.isOnPunctuation(text.indexOf('?') + 1));
634 assertTrue(wordIterator.isOnPunctuation(text.indexOf(')')));
635 assertFalse(wordIterator.isOnPunctuation(text.indexOf(')') + 1));
636 assertFalse(wordIterator.isOnPunctuation(text.indexOf('d')));
638 assertFalse(wordIterator.isOnPunctuation(BreakIterator.DONE));
639 assertFalse(wordIterator.isOnPunctuation(text.length()));
640 assertFalse(wordIterator.isOnPunctuation(text.length() + 1));