OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currGlyph
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/layout/
StateTableProcessor.cpp
48
le_int32
currGlyph
= 0;
53
while (
currGlyph
<= glyphCount) {
55
if (
currGlyph
== glyphCount) {
59
TTGlyphID glyphCode = (TTGlyphID) LE_GET_GLYPH(glyphStorage[
currGlyph
]);
71
currentState = processStateEntry(glyphStorage,
currGlyph
, entryTableIndex);
StateTableProcessor2.cpp
50
le_int32
currGlyph
= 0;
52
currGlyph
= glyphCount - 1;
63
while ((dir == 1 &&
currGlyph
<= glyphCount) || (dir == -1 &&
currGlyph
>= -1)) {
65
if (
currGlyph
== glyphCount ||
currGlyph
== -1) {
69
LEGlyphID gid = glyphStorage[
currGlyph
];
79
currentState = processStateEntry(glyphStorage,
currGlyph
, entryTableIndex); // return a zero-based index instead of a byte offset
86
while ((dir == 1 &&
currGlyph
<= glyphCount) || (dir == -1 &&
currGlyph
>= -1))
[
all
...]
Completed in 981 milliseconds