Searched refs:openStatus (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/text/
H A DLineBreakIteratorPoolICU.h63 UErrorCode openStatus = U_ZERO_ERROR; local
65 iterator = ubrk_open(UBRK_LINE, localeIsEmpty ? currentTextBreakLocaleID() : locale.string().utf8().data(), 0, 0, &openStatus);
68 if (!localeIsEmpty && U_FAILURE(openStatus)) {
69 openStatus = U_ZERO_ERROR;
70 iterator = ubrk_open(UBRK_LINE, currentTextBreakLocaleID(), 0, 0, &openStatus);
73 if (U_FAILURE(openStatus)) {
74 LOG_ERROR("ubrk_open failed with status %d", openStatus);
H A DTextBreakIteratorICU.cpp36 UErrorCode openStatus = U_ZERO_ERROR; local
37 iterator = reinterpret_cast<TextBreakIterator*>(ubrk_open(type, currentTextBreakLocaleID(), 0, 0, &openStatus));
39 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus); local
443 UErrorCode openStatus = U_ZERO_ERROR; local
444 UText* text = textOpenLatin1(&textLocal, string, length, 0, 0, &openStatus);
445 if (U_FAILURE(openStatus)) {
446 LOG_ERROR("textOpenLatin1 failed with status %d", openStatus);
499 UErrorCode openStatus local
527 UErrorCode openStatus = U_ZERO_ERROR; local
721 UErrorCode openStatus = U_ZERO_ERROR; local
726 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus); local
[all...]

Completed in 762 milliseconds