Home | History | Annotate | Download | only in i18n

Lines Matching full:errorcode

45         inline void append(int64_t ce, UErrorCode &errorCode) {
46 if(length < INITIAL_CAPACITY || ensureAppendCapacity(1, errorCode)) {
55 UBool ensureAppendCapacity(int32_t appCap, UErrorCode &errorCode);
57 inline UBool incLength(UErrorCode &errorCode) {
60 if(length < INITIAL_CAPACITY || ensureAppendCapacity(1, errorCode)) {
112 inline int64_t nextCE(UErrorCode &errorCode) {
118 if(!ceBuffer.incLength(errorCode)) {
122 uint32_t ce32 = handleNextCE32(c, errorCode);
153 return nextCEFromCE32(d, c, ce32, errorCode);
160 int32_t fetchCEs(UErrorCode &errorCode);
173 int64_t previousCE(UVector32 &offsets, UErrorCode &errorCode);
199 virtual UChar32 nextCodePoint(UErrorCode &errorCode) = 0;
205 virtual UChar32 previousCodePoint(UErrorCode &errorCode) = 0;
220 virtual uint32_t handleNextCE32(UChar32 &c, UErrorCode &errorCode);
243 virtual void forwardNumCodePoints(int32_t num, UErrorCode &errorCode) = 0;
245 virtual void backwardNumCodePoints(int32_t num, UErrorCode &errorCode) = 0;
254 virtual uint32_t getCE32FromBuilderData(uint32_t ce32, UErrorCode &errorCode);
257 UBool forward, UErrorCode &errorCode);
265 UErrorCode &errorCode);
268 UErrorCode &errorCode);
270 UChar32 nextSkippedCodePoint(UErrorCode &errorCode);
272 void backwardNumSkipped(int32_t n, UErrorCode &errorCode);
277 UErrorCode &errorCode);
282 UErrorCode &errorCode);
287 int64_t previousCEUnsafe(UChar32 c, UVector32 &offsets, UErrorCode &errorCode);
296 void appendNumericCEs(uint32_t ce32, UBool forward, UErrorCode &errorCode);
302 void appendNumericSegmentCEs(const char *digits, int32_t length, UErrorCode &errorCode);