HomeSort by relevance Sort by last modified time
    Searched refs:currGlyph (Results 1 - 18 of 18) sorted by null

  /external/icu/icu4c/source/layout/
StateTableProcessor2.cpp 64 le_int32 currGlyph = 0;
66 currGlyph = glyphCount - 1;
78 while ((dir == 1 && currGlyph <= glyphCount) || (dir == -1 && currGlyph >= -1)) {
85 if (currGlyph == glyphCount || currGlyph == -1) {
89 LEGlyphID gid = glyphStorage[currGlyph];
99 LE_STATE_PATIENCE_CURR(le_int32, currGlyph);
100 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex); // return a zero-based index instead of a byte offset
101 LE_STATE_PATIENCE_INCR(currGlyph);
    [all...]
StateTableProcessor.cpp 52 le_int32 currGlyph = 0;
57 while (currGlyph <= glyphCount) {
60 if (currGlyph == glyphCount) {
64 TTGlyphID glyphCode = (TTGlyphID) LE_GET_GLYPH(glyphStorage[currGlyph]);
75 LE_STATE_PATIENCE_CURR(le_int32, currGlyph);
76 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
77 LE_STATE_PATIENCE_INCR(currGlyph);
ContextualGlyphSubstProc.cpp 44 ByteOffset ContextualGlyphSubstitutionProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index)
61 LEGlyphID thisGlyph = glyphStorage[currGlyph];
64 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
68 markGlyph = currGlyph;
73 currGlyph += 1;
LigatureSubstProc.cpp 45 ByteOffset LigatureSubstitutionProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index)
58 componentStack[m] = currGlyph;
61 currGlyph++;
89 currGlyph++;
95 currGlyph++;
133 currGlyph += 1;
LigatureSubstProc2.cpp 48 le_uint16 LigatureSubstitutionProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success)
61 componentStack[m] = currGlyph;
65 currGlyph+= dir;
82 currGlyph+= dir;
100 currGlyph+= dir;
135 currGlyph += dir;
ContextualGlyphInsertionProc2.cpp 73 le_uint16 ContextualGlyphInsertionProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph,
96 doInsertion(glyphStorage, currGlyph, currIndex, count, isKashidaLike, isBefore, success);
100 markGlyph = currGlyph;
104 currGlyph += dir;
ContextualGlyphSubstProc.h 30 virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index);
ContextualGlyphSubstProc2.h 30 virtual le_uint16 processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success);
IndicRearrangementProcessor.h 30 virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index);
IndicRearrangementProcessor2.h 30 virtual le_uint16 processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success);
LigatureSubstProc.h 32 virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index);
LigatureSubstProc2.h 32 virtual le_uint16 processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph,
ContextualGlyphSubstProc2.cpp 40 le_uint16 ContextualGlyphSubstitutionProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph,
60 LEGlyphID thisGlyph = glyphStorage[currGlyph];
62 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
66 markGlyph = currGlyph;
70 currGlyph += dir;
ContextualGlyphInsertionProc2.h 32 le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success);
StateTableProcessor.h 31 virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index) = 0;
StateTableProcessor2.h 32 virtual le_uint16 processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success) = 0;
IndicRearrangementProcessor.cpp 41 ByteOffset IndicRearrangementProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index)
49 firstGlyph = currGlyph;
53 lastGlyph = currGlyph;
60 currGlyph += 1;
IndicRearrangementProcessor2.cpp 38 le_uint16 IndicRearrangementProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph,
47 firstGlyph = currGlyph;
51 lastGlyph = currGlyph;
57 currGlyph += dir;

Completed in 3757 milliseconds