Lines Matching refs:c1
48 UChar32 c1, c2; in compareIterators() local
74 c1=iter1->current(iter1); in compareIterators()
76 if(c1!=c2) { in compareIterators()
77 … log_err("%s->current()=U+%04x != U+%04x=%s->current() at middle=%d\n", n1, c1, c2, n2, middle); in compareIterators()
83 c1=iter1->next(iter1); in compareIterators()
85 if(c1!=c2) { in compareIterators()
86 …log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d (started in middle)\n", n1, c1, c2, n2, iter… in compareIterators()
93 c1=iter1->previous(iter1); in compareIterators()
95 if(c1!=c2) { in compareIterators()
96 …evious()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getI… in compareIterators()
123 c1=iter1->next(iter1); in compareIterators()
125 if(c1!=c2) { in compareIterators()
126 …log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d\n", n1, c1, c2, n2, iter1->getIndex(iter1, U… in compareIterators()
129 } while(c1>=0); in compareIterators()
188 c1=iter1->previous(iter1); in compareIterators()
190 if(c1!=c2) { in compareIterators()
191 …log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d\n", n1, c1, c2, n2, iter1->getIndex(… in compareIterators()
194 } while(c1>=0); in compareIterators()
308 UChar32 c1, c2; in TestLenient8Iterator() local
337 c1=iter1.next(&iter1); in TestLenient8Iterator()
339 if(c1<0 && c2<0) { in TestLenient8Iterator()
342 if(c1<0) { in TestLenient8Iterator()
345 printf("%04x\n", c1); in TestLenient8Iterator()
347 printf("%04x\t%04x\n", c1, c2); in TestLenient8Iterator()