OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scriptrun
(Results
1 - 7
of
7
) sorted by null
/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/
scrptrun.h
34
class
ScriptRun
: public UObject {
36
ScriptRun
();
38
ScriptRun
(const UChar chars[], int32_t length);
40
ScriptRun
(const UChar chars[], int32_t start, int32_t length);
100
inline
ScriptRun
::
ScriptRun
()
105
inline
ScriptRun
::
ScriptRun
(const UChar chars[], int32_t length)
110
inline
ScriptRun
::
ScriptRun
(const UChar chars[], int32_t start, int32_t length
[
all
...]
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();
scrptrun.cpp
21
const char
ScriptRun
::fgClassID=0;
23
UChar32
ScriptRun
::pairedChars[] = {
43
const int32_t
ScriptRun
::pairedCharCount = ARRAY_SIZE(pairedChars);
44
const int32_t
ScriptRun
::pairedCharPower = 1 << highBit(pairedCharCount);
45
const int32_t
ScriptRun
::pairedCharExtra = pairedCharCount - pairedCharPower;
47
int8_t
ScriptRun
::highBit(int32_t value)
83
int32_t
ScriptRun
::getPairIndex(UChar32 ch)
107
UBool
ScriptRun
::sameScript(int32_t scriptOne, int32_t scriptTwo)
112
UBool
ScriptRun
::next()
readme.html
8
<title>
ScriptRun
readme</title>
15
and scrptrun.cpp implement the
ScriptRun
class, which can be used to find
17
<p>srtest is a little program that tests
ScriptRun
. You can use it as an
18
example of how to use
ScriptRun
. Here's what the output should look like:
38
To use the
ScriptRun
class in a Windows application, just include scrptrun.h
61
ScriptRun
is based on <a href="http://www.unicode.org/unicode/reports/tr24/">Unicode
/external/icu4c/test/cintltst/
cucdtst.c
[
all
...]
Completed in 226 milliseconds