Home | History | Annotate | Download | only in cintltst

Lines Matching defs:targetLength

943         log_verbose("\n---Testing ucnv_fromUChars() with targetLength = 0\n");
946 log_err("\nFAILURE: ucnv_fromUChars with targetLength 0 is expected to fail and throw U_BUFFER_OVERFLOW_ERROR\n");
966 log_err("\nFAILURE: ucnv_toUChars(targetLength)->%s instead of U_STRING_NOT_TERMINATED_WARNING\n",
2147 int32_t targetLength;
2184 targetLength=(int32_t)(target-targetBuffer);
2193 if(targetLength+chunkSize<=sizeof(targetBuffer)) {
2213 } else if(targetLength!=expectTargetLength) {
2215 testName, chunkSize, targetLength, expectTargetLength);
2216 } else if(memcmp(targetBuffer, expectTarget, targetLength)!=0) {