Home | History | Annotate | Download | only in i18n

Lines Matching refs:errorCode

60 UTF16CollationIterator::handleNextCE32(UChar32 &c, UErrorCode & /*errorCode*/) {
88 UTF16CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
108 UTF16CollationIterator::previousCodePoint(UErrorCode & /*errorCode*/) {
123 UTF16CollationIterator::forwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
139 UTF16CollationIterator::backwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
210 FCDUTF16CollationIterator::handleNextCE32(UChar32 &c, UErrorCode &errorCode) {
222 if(!nextSegment(errorCode)) {
251 FCDUTF16CollationIterator::nextCodePoint(UErrorCode &errorCode) {
263 if(!nextSegment(errorCode)) {
290 FCDUTF16CollationIterator::previousCodePoint(UErrorCode &errorCode) {
302 if(!previousSegment(errorCode)) {
326 FCDUTF16CollationIterator::forwardNumCodePoints(int32_t num, UErrorCode &errorCode) {
329 while(num > 0 && FCDUTF16CollationIterator::nextCodePoint(errorCode) >= 0) {
335 FCDUTF16CollationIterator::backwardNumCodePoints(int32_t num, UErrorCode &errorCode) {
338 while(num > 0 && FCDUTF16CollationIterator::previousCodePoint(errorCode) >= 0) {
374 FCDUTF16CollationIterator::nextSegment(UErrorCode &errorCode) {
375 if(U_FAILURE(errorCode)) { return FALSE; }
395 if(!normalize(pos, q, errorCode)) { return FALSE; }
438 FCDUTF16CollationIterator::previousSegment(UErrorCode &errorCode) {
439 if(U_FAILURE(errorCode)) { return FALSE; }
461 if(!normalize(q, pos, errorCode)) { return FALSE; }
478 FCDUTF16CollationIterator::normalize(const UChar *from, const UChar *to, UErrorCode &errorCode) {
480 U_ASSERT(U_SUCCESS(errorCode));
481 nfcImpl.decompose(from, to, normalized, (int32_t)(to - from), errorCode);
482 if(U_FAILURE(errorCode)) { return FALSE; }