Lines Matching refs:UChar32
227 UChar32 prev = 0;
233 UChar32 c = iter->getCodepoint();
321 for(UChar32 c = 0x10000; c < 0x110000;) {
322 UChar32 next = c + 0x400;
340 for(UChar32 c = 0; c <= 0xffff; ++c) {
360 for(UChar32 c = 0; c <= 0xffff; ++c) {
376 CodePointIterator(const UChar32 *cp, int32_t length) : cp(cp), length(length), pos(0) {}
378 UChar32 next() { return (pos < length) ? cp[pos++] : U_SENTINEL; }
379 UChar32 previous() { return (pos > 0) ? cp[--pos] : U_SENTINEL; }
383 const UChar32 *cp;
394 UChar32 c1 = ci.nextCodePoint(errorCode);
395 UChar32 c2 = cpi.next();
406 UChar32 c1 = ci.previousCodePoint(errorCode);
407 UChar32 c2 = cpi.previous();
417 UChar32 c1 = ci.nextCodePoint(errorCode);
418 UChar32 c2 = cpi.next();
429 UChar32 c1 = ci.previousCodePoint(errorCode);
430 UChar32 c2 = cpi.previous();
464 static const UChar32 cp[] = {
1499 UChar32 c = s.char32At(i);