Searched refs:scriptRun (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dusc_impl.c30 #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_ argument
88 pop(UScriptRun *scriptRun) argument
109 fixup(UScriptRun *scriptRun, UScriptCode scriptCode) argument
219 uscript_closeRun(UScriptRun *scriptRun) argument
227 uscript_resetRun(UScriptRun *scriptRun) argument
240 uscript_setRunText(UScriptRun *scriptRun, const UChar *src, int32_t length, UErrorCode *pErrorCode) argument
258 uscript_nextRun(UScriptRun *scriptRun, int32_t *pRunStart, int32_t *pRunLimit, UScriptCode *pRunScript) argument
[all...]
H A Dusc_impl.h43 * UScriptRun *scriptRun = uscript_openRun(text, testLength, &error);
51 * uscript_closeRun(scriptRun);
83 * On return, scriptRun no longer points to a valid <code>UScriptRun</code> object.
85 * @param scriptRun is the <code>UScriptRun</code> object which will be freed.
88 uscript_closeRun(UScriptRun *scriptRun);
94 * @param scriptRun is the address of the <code>UScriptRun</code> object to be reset.
97 uscript_resetRun(UScriptRun *scriptRun);
102 * @param scriptRun is the <code>UScriptRun</code> object which will be changed.
115 uscript_setRunText(UScriptRun *scriptRun, const UChar *src, int32_t length, UErrorCode *pErrorCode);
121 * @param scriptRun i
[all...]
/external/icu/icu4c/source/common/
H A Dusc_impl.c30 #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_ argument
88 pop(UScriptRun *scriptRun) argument
109 fixup(UScriptRun *scriptRun, UScriptCode scriptCode) argument
219 uscript_closeRun(UScriptRun *scriptRun) argument
227 uscript_resetRun(UScriptRun *scriptRun) argument
240 uscript_setRunText(UScriptRun *scriptRun, const UChar *src, int32_t length, UErrorCode *pErrorCode) argument
258 uscript_nextRun(UScriptRun *scriptRun, int32_t *pRunStart, int32_t *pRunLimit, UScriptCode *pRunScript) argument
[all...]
H A Dusc_impl.h43 * UScriptRun *scriptRun = uscript_openRun(text, testLength, &error);
51 * uscript_closeRun(scriptRun);
83 * On return, scriptRun no longer points to a valid <code>UScriptRun</code> object.
85 * @param scriptRun is the <code>UScriptRun</code> object which will be freed.
88 uscript_closeRun(UScriptRun *scriptRun);
94 * @param scriptRun is the address of the <code>UScriptRun</code> object to be reset.
97 uscript_resetRun(UScriptRun *scriptRun);
102 * @param scriptRun is the <code>UScriptRun</code> object which will be changed.
115 uscript_setRunText(UScriptRun *scriptRun, const UChar *src, int32_t length, UErrorCode *pErrorCode);
121 * @param scriptRun i
[all...]
/external/chromium_org/third_party/icu/source/extra/scrptrun/
H A Dsrtest.cpp29 ScriptRun scriptRun(testChars, 0, testLength);
31 while (scriptRun.next()) {
32 int32_t start = scriptRun.getScriptStart();
33 int32_t end = scriptRun.getScriptEnd();
34 UScriptCode code = scriptRun.getScriptCode();
/external/icu/icu4c/source/extra/scrptrun/
H A Dsrtest.cpp29 ScriptRun scriptRun(testChars, 0, testLength);
31 while (scriptRun.next()) {
32 int32_t start = scriptRun.getScriptStart();
33 int32_t end = scriptRun.getScriptEnd();
34 UScriptCode code = scriptRun.getScriptCode();
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c2018 CheckScriptRuns(UScriptRun *scriptRun, int32_t *runStarts, const RunTestData *testData, int32_t nRuns, argument
2026 while (uscript_nextRun(scriptRun, &runStart, &runLimit, &runCode)) {
2094 UScriptRun *scriptRun = NULL; local
2115 scriptRun = uscript_openRun(NULL, stringLimit, &err);
2121 if (scriptRun != NULL) {
2123 uscript_closeRun(scriptRun);
2131 scriptRun = uscript_openRun(testString, 0, &err);
2137 if (scriptRun != NULL) {
2139 uscript_closeRun(scriptRun);
2147 scriptRun
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c2017 CheckScriptRuns(UScriptRun *scriptRun, int32_t *runStarts, const RunTestData *testData, int32_t nRuns, argument
2025 while (uscript_nextRun(scriptRun, &runStart, &runLimit, &runCode)) {
2093 UScriptRun *scriptRun = NULL; local
2114 scriptRun = uscript_openRun(NULL, stringLimit, &err);
2120 if (scriptRun != NULL) {
2122 uscript_closeRun(scriptRun);
2130 scriptRun = uscript_openRun(testString, 0, &err);
2136 if (scriptRun != NULL) {
2138 uscript_closeRun(scriptRun);
2146 scriptRun
[all...]

Completed in 1459 milliseconds