Lines Matching full:iserror
200 UBool isError = FALSE;
201 U16_APPEND(fUnion.fStackFields.fBuffer, i, US_STACKBUF_SIZE, ch, isError);
202 // We test isError so that the compiler does not complain that we don't.
203 // If isError then i==0 which is what we want anyway.
204 if(!isError) {
1378 UBool isError = FALSE;
1379 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
1380 // We test isError so that the compiler does not complain that we don't.
1381 // If isError (srcChar is not a valid code point) then count==0 which means
1383 return doReplace(start, _length, buffer, 0, isError ? 0 : count);
1390 UBool isError = FALSE;
1391 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
1392 // We test isError so that the compiler does not complain that we don't.
1393 // If isError then _length==0 which turns the doAppend() into a no-op anyway.
1394 return isError ? *this : doAppend(buffer, 0, _length);
1873 UBool isError = FALSE;
1874 U16_APPEND(buffer, cLength, U16_MAX_LENGTH, c, isError);
1875 return !isError && str.doAppend(buffer, 0, cLength).isWritable();