Home | History | Annotate | Download | only in cintltst

Lines Matching defs:source

414         const uint8_t source[]={ 0x00, 0x04, 0x05, 0x06, 0xa2, 0xb4, 0x00};
417 source);
421 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err);
426 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
438 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source+1, -1, &err);
446 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, 0, &err);
452 sourceLimit=UPRV_LENGTHOF(source);
453 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
459 sourceLimit=UPRV_LENGTHOF(source);
461 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
672 const char *source=(const char *)in, *limit=(const char *)in+sizeof(in);
677 c=ucnv_getNextUChar(cnv, &source, limit, &err);
1946 const char *source,
2004 static const char source[]={ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39 };
2029 source,
2030 sizeof(source),
2072 * bug3: when the characters expand going from source to target codepage
2304 /* NUL-terminated source and target */
2321 /* NUL-terminated source and U_STRING_NOT_TERMINATED_WARNING */
2365 /* *source==NULL */
2372 log_err("ucnv_convertEx(*source==NULL) sets %s\n", u_errorName(errorCode));
2510 const char *source;
2537 source=utf8;
2543 &source, utf8+utf8Length,
2854 /* source==NULL */
2858 log_err("ucnv_fromAlgorithmic(source==NULL) sets %s\n", u_errorName(errorCode));
3214 const UChar* source = fromUnicodeTests[i].input;
3215 const UChar* sourceLimit = source + fromUnicodeTests[i].len;
3218 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3249 const UChar* source = head;
3250 const UChar* sourceLimit = source + u_strlen(head);
3253 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3262 source = middle;
3263 sourceLimit = source + u_strlen(middle);
3264 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3273 source = tail;
3274 sourceLimit = source + u_strlen(tail);
3275 ucnv_fromUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3320 const char* source = toUnicodeTests[i].input;
3321 const char* sourceLimit = source + toUnicodeTests[i].len;
3324 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3357 const char* source = head;
3358 const char* sourceLimit = source + strlen(head);
3366 ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3374 source=mid;
3375 sourceLimit = source+strlen(mid);
3376 ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
3385 source=tail;
3386 sourceLimit = source+strlen(tail);
3388 ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);