Home | History | Annotate | Download | only in cintltst

Lines Matching defs:testString

1947         UChar testString[1024];
1962 stringLimit += u_unescape(testData[run].runText, &testString[stringLimit], 1024 - stringLimit);
1990 scriptRun = uscript_openRun(testString, 0, &err);
1993 log_err("uscript_openRun(testString, 0, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
1997 log_err("uscript_openRun(testString, 0, &err) returned a non-NULL result.\n");
2033 uscript_setRunText(scriptRun, testString, 0, &err);
2036 log_err("uscript_setRunText(scriptRun, testString, 0, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
2044 uscript_setRunText(scriptRun, testString, stringLimit, &err);
2055 * Now open an interator over the testString
2058 scriptRun = uscript_openRun(testString, stringLimit, &err);