Home | History | Annotate | Download | only in i18n

Lines Matching refs:errorCode

43 UTF8CollationIterator::handleNextCE32(UChar32 &c, UErrorCode & /*errorCode*/) {
94 UTF8CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
108 UTF8CollationIterator::previousCodePoint(UErrorCode & /*errorCode*/) {
118 UTF8CollationIterator::forwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
123 UTF8CollationIterator::backwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
150 FCDUTF8CollationIterator::handleNextCE32(UChar32 &c, UErrorCode &errorCode) {
204 if(!nextSegment(errorCode)) {
210 return UTF8CollationIterator::handleNextCE32(c, errorCode);
265 FCDUTF8CollationIterator::nextCodePoint(UErrorCode &errorCode) {
283 if(!nextSegment(errorCode)) {
303 FCDUTF8CollationIterator::previousCodePoint(UErrorCode &errorCode) {
321 if(!previousSegment(errorCode)) {
341 FCDUTF8CollationIterator::forwardNumCodePoints(int32_t num, UErrorCode &errorCode) {
344 while(num > 0 && FCDUTF8CollationIterator::nextCodePoint(errorCode) >= 0) {
350 FCDUTF8CollationIterator::backwardNumCodePoints(int32_t num, UErrorCode &errorCode) {
353 while(num > 0 && FCDUTF8CollationIterator::previousCodePoint(errorCode) >= 0) {
385 FCDUTF8CollationIterator::nextSegment(UErrorCode &errorCode) {
386 if(U_FAILURE(errorCode)) { return FALSE; }
417 if(!normalize(s, errorCode)) { return FALSE; }
464 FCDUTF8CollationIterator::previousSegment(UErrorCode &errorCode) {
465 if(U_FAILURE(errorCode)) { return FALSE; }
499 if(!normalize(s, errorCode)) { return FALSE; }
520 FCDUTF8CollationIterator::normalize(const UnicodeString &s, UErrorCode &errorCode) {
522 U_ASSERT(U_SUCCESS(errorCode));
523 nfcImpl.decompose(s, normalized, errorCode);
524 return U_SUCCESS(errorCode);