Home | History | Annotate | Download | only in cintltst

Lines Matching refs:u_strToJavaModifiedUTF8

1560     p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
1566 log_err("u_strToJavaModifiedUTF8(normal) failed - %s\n", u_errorName(errorCode));
1571 p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), NULL,
1577 log_err("u_strToJavaModifiedUTF8(normal, pLength=NULL) failed - %s\n", u_errorName(errorCode));
1582 p=u_strToJavaModifiedUTF8(dest, LENGTHOF(expected), &length,
1588 log_err("u_strToJavaModifiedUTF8(tight) failed - %s\n", u_errorName(errorCode));
1593 p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length, src, -1, &errorCode);
1598 log_err("u_strToJavaModifiedUTF8(NUL-terminated) failed - %s\n", u_errorName(errorCode));
1603 p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), NULL, src, -1, &errorCode);
1608 log_err("u_strToJavaModifiedUTF8(NUL-terminated, pLength=NULL) failed - %s\n", u_errorName(errorCode));
1613 p=u_strToJavaModifiedUTF8(dest, LENGTHOF(expected)/2, &length,
1618 log_err("u_strToJavaModifiedUTF8(overflow) failed - %s\n", u_errorName(errorCode));
1623 p=u_strToJavaModifiedUTF8(NULL, 0, &length,
1628 log_err("u_strToJavaModifiedUTF8(pure preflighting) failed - %s\n", u_errorName(errorCode));
1633 p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
1639 log_err("u_strToJavaModifiedUTF8(short) failed - %s\n", u_errorName(errorCode));
1644 p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
1650 log_err("u_strToJavaModifiedUTF8(asciiNul) failed - %s\n", u_errorName(errorCode));
1655 p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
1660 log_err("u_strToJavaModifiedUTF8(empty) failed - %s\n", u_errorName(errorCode));
1667 p=u_strToJavaModifiedUTF8(NULL, sizeof(dest), &length,
1670 log_err("u_strToJavaModifiedUTF8(dest=NULL) failed - %s\n", u_errorName(errorCode));
1675 p=u_strToJavaModifiedUTF8(dest, -1, &length,
1678 log_err("u_strToJavaModifiedUTF8(destCapacity<0) failed - %s\n", u_errorName(errorCode));
1683 p=u_strToJavaModifiedUTF8(dest, sizeof(dest), &length,
1686 log_err("u_strToJavaModifiedUTF8(src=NULL) failed - %s\n", u_errorName(errorCode));
1691 p=u_strToJavaModifiedUTF8(dest, sizeof(dest), &length,
1694 log_err("u_strToJavaModifiedUTF8(src=NULL, srcLength<0) failed - %s\n", u_errorName(errorCode));
2099 u_strToJavaModifiedUTF8(dest8, LENGTHOF(dest8), &length, NULL, 0, &errorCode);
2101 log_err("u_strToJavaModifiedUTF8(source=NULL, sourceLength=0) failed\n");