OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptRun
(Results
1 - 3
of
3
) sorted by null
/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
...]
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()
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();
Completed in 126 milliseconds