Home | History | Annotate | Download | only in cintltst

Lines Matching refs:scriptRun

1877 CheckScriptRuns(UScriptRun *scriptRun, int32_t *runStarts, const RunTestData *testData, int32_t nRuns,
1885 while (uscript_nextRun(scriptRun, &runStart, &runLimit, &runCode)) {
1953 UScriptRun *scriptRun = NULL;
1974 scriptRun = uscript_openRun(NULL, stringLimit, &err);
1980 if (scriptRun != NULL) {
1982 uscript_closeRun(scriptRun);
1990 scriptRun = uscript_openRun(testString, 0, &err);
1996 if (scriptRun != NULL) {
1998 uscript_closeRun(scriptRun);
2006 scriptRun = uscript_openRun(NULL, 0, &err);
2013 if (uscript_nextRun(scriptRun, NULL, NULL, NULL)) {
2022 uscript_setRunText(scriptRun, NULL, stringLimit, &err);
2025 log_err("uscript_setRunText(scriptRun, NULL, stringLimit, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
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);
2049 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_setRunText");
2052 uscript_closeRun(scriptRun);
2058 scriptRun = uscript_openRun(testString, stringLimit, &err);
2063 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_openRun");
2069 uscript_resetRun(scriptRun);
2071 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_resetRun");
2074 uscript_closeRun(scriptRun);