Home | History | Annotate | Download | only in cintltst

Lines Matching defs:targetLength

982         log_verbose("\n---Testing ucnv_fromUChars() with targetLength = 0\n");
985 log_err("\nFAILURE: ucnv_fromUChars with targetLength 0 is expected to fail and throw U_BUFFER_OVERFLOW_ERROR\n");
1005 log_err("\nFAILURE: ucnv_toUChars(targetLength)->%s instead of U_STRING_NOT_TERMINATED_WARNING\n",
2185 int32_t targetLength;
2222 targetLength=(int32_t)(target-targetBuffer);
2231 if(targetLength+chunkSize<=sizeof(targetBuffer)) {
2251 } else if(targetLength!=expectTargetLength) {
2253 testName, chunkSize, targetLength, expectTargetLength);
2254 } else if(memcmp(targetBuffer, expectTarget, targetLength)!=0) {