HomeSort by relevance Sort by last modified time
    Searched refs:scriptRun (Results 1 - 6 of 6) sorted by null

  /external/icu/icu4c/source/common/
usc_impl.cpp 30 #define STACK_IS_EMPTY(scriptRun) ((scriptRun)->pushCount <= 0)
31 #define STACK_IS_NOT_EMPTY(scriptRun) (! STACK_IS_EMPTY(scriptRun))
32 #define TOP(scriptRun) ((scriptRun)->parenStack[(scriptRun)->parenSP])
33 #define SYNC_FIXUP(scriptRun) ((scriptRun)->fixupCount = 0)
78 static void push(UScriptRun *scriptRun, int32_t pairIndex, UScriptCode scriptCode
    [all...]
usc_impl.h 45 * UScriptRun *scriptRun = uscript_openRun(text, testLength, &error);
53 * uscript_closeRun(scriptRun);
85 * On return, scriptRun no longer points to a valid <code>UScriptRun</code> object.
87 * @param scriptRun is the <code>UScriptRun</code> object which will be freed.
90 uscript_closeRun(UScriptRun *scriptRun);
96 * @param scriptRun is the address of the <code>UScriptRun</code> object to be reset.
99 uscript_resetRun(UScriptRun *scriptRun);
104 * @param scriptRun is the <code>UScriptRun</code> object which will be changed.
117 uscript_setRunText(UScriptRun *scriptRun, const UChar *src, int32_t length, UErrorCode *pErrorCode);
123 * @param scriptRun is the address of the <code>UScriptRun</code> object
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
TestUScriptRun.java 63 private void CheckScriptRuns(UScriptRun scriptRun, int[] runStarts, RunTestData[] testData)
70 while (scriptRun.next()) {
71 runStart = scriptRun.getScriptStart();
72 runLimit = scriptRun.getScriptLimit();
73 runScript = scriptRun.getScriptCode();
104 UScriptRun scriptRun = null;
109 scriptRun = new UScriptRun(nullString, 0, 100);
116 scriptRun = new UScriptRun(nullString, 100, 0);
123 scriptRun = new UScriptRun(nullString, 0, -100);
130 scriptRun = new UScriptRun(nullString, -100, 0)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
TestUScriptRun.java 60 private void CheckScriptRuns(UScriptRun scriptRun, int[] runStarts, RunTestData[] testData)
67 while (scriptRun.next()) {
68 runStart = scriptRun.getScriptStart();
69 runLimit = scriptRun.getScriptLimit();
70 runScript = scriptRun.getScriptCode();
101 UScriptRun scriptRun = null;
106 scriptRun = new UScriptRun(nullString, 0, 100);
113 scriptRun = new UScriptRun(nullString, 100, 0);
120 scriptRun = new UScriptRun(nullString, 0, -100);
127 scriptRun = new UScriptRun(nullString, -100, 0)
    [all...]
  /external/icu/icu4c/source/extra/scrptrun/
srtest.cpp 32 ScriptRun scriptRun(testChars, 0, testLength);
34 while (scriptRun.next()) {
35 int32_t start = scriptRun.getScriptStart();
36 int32_t end = scriptRun.getScriptEnd();
37 UScriptCode code = scriptRun.getScriptCode();
  /external/icu/icu4c/source/test/cintltst/
cucdtst.c     [all...]

Completed in 481 milliseconds