Home | History | Annotate | Download | only in intltest

Lines Matching refs:next

77     //    source and dest iterator produce the same next() after assignment.
111 int bixnext = bix->next();
112 int bi2next = bi2->next();
117 if (bi2->next() != 8) {
118 errln(UnicodeString("ERROR: iterator.next() failed after deleting copy."));
274 wordIter1->next(2);
328 pos = wordIter1->next();
330 pos = wordIter1->next();
332 pos = wordIter1->next();
334 pos = wordIter1->next();
345 pos = wordIter1->next();
347 pos = wordIter1->next();
449 // next()
452 i = bi->next();
454 errln("Incorrect value from bi->next() at line %d. Expected 1, got %d", __LINE__, i);
458 i = bi->next();
460 errln("Incorrect value from bi->next() at line %d. Expected DONE, got %d", __LINE__, i);
473 bi->next();
480 bi->next();
559 // next(n)
562 i = bi->next(4);
564 errln("Incorrect value from bi->next() at line %d. Expected 4, got %d", __LINE__, i);
567 i = bi->next(6);
569 errln("Incorrect value from bi->next() at line %d. Expected 10, got %d", __LINE__, i);
573 i = bi->next(11);
575 errln("Incorrect value from bi->next() at line %d. Expected BreakIterator::DONE, got %d", __LINE__, i);
672 for (pos = bi->first(); pos != BreakIterator::DONE; pos = bi->next(), i++) {
726 pos = bi->next();
766 pos = bi->next();
775 pos = bi->next();
784 pos = bi->next();
793 pos = bi->next();
801 pos = bi->next();
810 pos = bi->next();
821 pos = bi->next();
1083 status = U_ZERO_ERROR;// reset for the next test
1115 while (rb2->next() != UBRK_DONE) {
1136 * runs BreakIterator::next() repeatedly, moving the text in the middle of the sequence.
1155 TEST_ASSERT(1 == bi->next());
1156 TEST_ASSERT(3 == bi->next());
1168 TEST_ASSERT(5 == bi->next());
1169 TEST_ASSERT(7 == bi->next());
1170 TEST_ASSERT(8 == bi->next());
1171 TEST_ASSERT(UBRK_DONE == bi->next());