Home | History | Annotate | Download | only in cintltst

Lines Matching defs:targetLength

941         log_verbose("\n---Testing ucnv_fromUChars() with targetLength = 0\n");
944 log_err("\nFAILURE: ucnv_fromUChars with targetLength 0 is expected to fail and throw U_BUFFER_OVERFLOW_ERROR\n");
964 log_err("\nFAILURE: ucnv_toUChars(targetLength)->%s instead of U_STRING_NOT_TERMINATED_WARNING\n",
2148 int32_t targetLength;
2185 targetLength=(int32_t)(target-targetBuffer);
2194 if(targetLength+chunkSize<=sizeof(targetBuffer)) {
2214 } else if(targetLength!=expectTargetLength) {
2216 testName, chunkSize, targetLength, expectTargetLength);
2217 } else if(memcmp(targetBuffer, expectTarget, targetLength)!=0) {