Home | History | Annotate | Download | only in cintltst

Lines Matching defs:source

415         const uint8_t source[]={ 0x00, 0x04, 0x05, 0x06, 0xa2, 0xb4, 0x00};
418 sourceLimit=sizeof(sourcesource[0]);
422 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err);
427 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
439 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source+1, -1, &err);
447 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, 0, &err);
453 sourceLimit=sizeof(source)/sizeof(source[0]);
454 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
460 sourceLimit=sizeof(source)/sizeof(source[0]);
462 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
673 const char *source=(const char *)in, *limit=(const char *)in+sizeof(in);
678 c=ucnv_getNextUChar(cnv, &source, limit, &err);
1944 const char *source,
2002 static const char source[]={ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39 };
2024 source,
2025 sizeof(source),
2065 * bug3: when the characters expand going from source to target codepage
2297 /* NUL-terminated source and target */
2314 /* NUL-terminated source and U_STRING_NOT_TERMINATED_WARNING */
2358 /* *source==NULL */
2365 log_err("ucnv_convertEx(*source==NULL) sets %s\n", u_errorName(errorCode));
2503 const char *source;
2530 source=utf8;
2536 &source, utf8+utf8Length,
2842 /* source==NULL */
2846 log_err("ucnv_fromAlgorithmic(source==NULL) sets %s\n", u_errorName(errorCode));
3204 const UChar* source = fromUnicodeTests[i].input;
3205 const UChar* sourceLimit = source + fromUnicodeTests[i].len;
3208 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3239 const UChar* source = head;
3240 const UChar* sourceLimit = source + u_strlen(head);
3243 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3252 source = middle;
3253 sourceLimit = source + u_strlen(middle);
3254 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3263 source = tail;
3264 sourceLimit = source + u_strlen(tail);
3265 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3310 const char* source = toUnicodeTests[i].input;
3311 const char* sourceLimit = source + toUnicodeTests[i].len;
3314 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3347 const char* source = head;
3348 const char* sourceLimit = source + strlen(head);
3356 ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3364 source=mid;
3365 sourceLimit = source+strlen(mid);
3366 ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3375 source=tail;
3376 sourceLimit = source+strlen(tail);
3378 ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);