Home | History | Annotate | Download | only in cintltst

Lines Matching defs:scriptRun

2108 CheckScriptRuns(UScriptRun *scriptRun, int32_t *runStarts, const RunTestData *testData, int32_t nRuns,
2116 while (uscript_nextRun(scriptRun, &runStart, &runLimit, &runCode)) {
2184 UScriptRun *scriptRun = NULL;
2205 scriptRun = uscript_openRun(NULL, stringLimit, &err);
2211 if (scriptRun != NULL) {
2213 uscript_closeRun(scriptRun);
2221 scriptRun = uscript_openRun(testString, 0, &err);
2227 if (scriptRun != NULL) {
2229 uscript_closeRun(scriptRun);
2237 scriptRun = uscript_openRun(NULL, 0, &err);
2244 if (uscript_nextRun(scriptRun, NULL, NULL, NULL)) {
2253 uscript_setRunText(scriptRun, NULL, stringLimit, &err);
2256 log_err("uscript_setRunText(scriptRun, NULL, stringLimit, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
2264 uscript_setRunText(scriptRun, testString, 0, &err);
2267 log_err("uscript_setRunText(scriptRun, testString, 0, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
2275 uscript_setRunText(scriptRun, testString, stringLimit, &err);
2280 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_setRunText");
2283 uscript_closeRun(scriptRun);
2289 scriptRun = uscript_openRun(testString, stringLimit, &err);
2294 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_openRun");
2300 uscript_resetRun(scriptRun);
2302 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_resetRun");
2305 uscript_closeRun(scriptRun);