Home | History | Annotate | Download | only in intltest

Lines Matching refs:U_SENTINEL

378     UChar32 next() { return (pos < length) ? cp[pos++] : U_SENTINEL; }
379 UChar32 previous() { return (pos > 0) ? cp[--pos] : U_SENTINEL; }