Lines Matching refs:isError
200 UBool isError = FALSE; in UnicodeString() local
201 U16_APPEND(fUnion.fStackFields.fBuffer, i, US_STACKBUF_SIZE, ch, isError); in UnicodeString()
204 if(!isError) { in UnicodeString()
1378 UBool isError = FALSE; in replace() local
1379 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError); in replace()
1383 return doReplace(start, _length, buffer, 0, isError ? 0 : count); in replace()
1390 UBool isError = FALSE; in append() local
1391 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError); in append()
1394 return isError ? *this : doAppend(buffer, 0, _length); in append()
1908 UBool isError = FALSE; in appendCodePoint() local
1909 U16_APPEND(buffer, cLength, U16_MAX_LENGTH, c, isError); in appendCodePoint()
1910 return !isError && str.doAppend(buffer, 0, cLength).isWritable(); in appendCodePoint()