OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scriptRun
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/icu/source/common/
usc_impl.c
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
43
* UScriptRun *
scriptRun
= uscript_openRun(text, testLength, &error);
51
* uscript_closeRun(
scriptRun
);
87
* On return,
scriptRun
no longer points to a valid <code>UScriptRun</code> object.
89
* @param
scriptRun
is the <code>UScriptRun</code> object which will be freed.
94
uscript_closeRun(UScriptRun *
scriptRun
);
100
* @param
scriptRun
is the address of the <code>UScriptRun</code> object to be reset.
105
uscript_resetRun(UScriptRun *
scriptRun
);
110
* @param
scriptRun
is the <code>UScriptRun</code> object which will be changed.
125
uscript_setRunText(UScriptRun *
scriptRun
, const UChar *src, int32_t length, UErrorCode *pErrorCode);
131
* @param
scriptRun
is the address of the <code>UScriptRun</code> object
[
all
...]
/external/icu4c/common/
usc_impl.c
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
43
* 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
is the address of the <code>UScriptRun</code> object
[
all
...]
/external/icu4c/extra/scrptrun/
srtest.cpp
29
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/
cucdtst.c
[
all
...]
/external/icu4c/test/cintltst/
cucdtst.c
[
all
...]
Completed in 137 milliseconds