HomeSort by relevance Sort by last modified time
    Searched refs:glyphIterator (Results 1 - 25 of 35) sorted by null

1 2

  /external/icu4c/layout/
SinglePositioningSubtables.cpp 13 #include "GlyphIterator.h"
18 le_uint32 SinglePositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
29 return subtable->process(glyphIterator, fontInstance);
36 return subtable->process(glyphIterator, fontInstance);
44 le_uint32 SinglePositioningFormat1Subtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
46 LEGlyphID glyph = glyphIterator->getCurrGlyphID();
50 valueRecord.adjustPosition(SWAPW(valueFormat), (const char *) this, *glyphIterator, fontInstance);
58 le_uint32 SinglePositioningFormat2Subtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) cons
    [all...]
SinglePositioningSubtables.h 20 #include "GlyphIterator.h"
26 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
34 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
43 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
SingleSubstitutionSubtables.h 19 #include "GlyphIterator.h"
25 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
32 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
40 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
SingleSubstitutionSubtables.cpp 12 #include "GlyphIterator.h"
17 le_uint32 SingleSubstitutionSubtable::process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter) const
28 return subtable->process(glyphIterator, filter);
35 return subtable->process(glyphIterator, filter);
43 le_uint32 SingleSubstitutionFormat1Subtable::process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter) const
45 LEGlyphID glyph = glyphIterator->getCurrGlyphID();
52 glyphIterator->setCurrGlyphID(substitute);
61 le_uint32 SingleSubstitutionFormat2Subtable::process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter) cons
    [all...]
MarkToBasePosnSubtables.h 20 #include "GlyphIterator.h"
26 le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
27 LEGlyphID findBaseGlyph(GlyphIterator *glyphIterator) const;
MarkToLigaturePosnSubtables.h 20 #include "GlyphIterator.h"
26 le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
27 LEGlyphID findLigatureGlyph(GlyphIterator *glyphIterator) const;
MarkToMarkPosnSubtables.h 20 #include "GlyphIterator.h"
26 le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
27 LEGlyphID findMark2Glyph(GlyphIterator *glyphIterator) const;
CursiveAttachmentSubtables.cpp 11 #include "GlyphIterator.h"
17 le_uint32 CursiveAttachmentSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
19 LEGlyphID glyphID = glyphIterator->getCurrGlyphID();
24 glyphIterator->setCursiveGlyph();
36 glyphIterator->setCursiveEntryPoint(entryAnchor);
38 //glyphIterator->clearCursiveEntryPoint();
45 glyphIterator->setCursiveExitPoint(exitAnchor);
47 //glyphIterator->clearCursiveExitPoint();
GlyphPosnLookupProc.cpp 63 GlyphIterator *glyphIterator,
82 delta = subtable->process(glyphIterator, fontInstance);
90 delta = subtable->process(glyphIterator, fontInstance);
98 delta = subtable->process(glyphIterator, fontInstance);
106 delta = subtable->process(glyphIterator, fontInstance);
114 delta = subtable->process(glyphIterator, fontInstance);
122 delta = subtable->process(glyphIterator, fontInstance);
130 delta = subtable->process(this, glyphIterator, fontInstance, success);
138 delta = subtable->process(this, glyphIterator, fontInstance, success)
    [all...]
MarkToMarkPosnSubtables.cpp 15 #include "GlyphIterator.h"
20 LEGlyphID MarkToMarkPositioningSubtable::findMark2Glyph(GlyphIterator *glyphIterator) const
22 if (glyphIterator->findMark2Glyph()) {
23 return glyphIterator->getCurrGlyphID();
29 le_int32 MarkToMarkPositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
31 LEGlyphID markGlyph = glyphIterator->getCurrGlyphID();
50 GlyphIterator mark2Iterator(*glyphIterator);
    [all...]
LigatureSubstSubtables.cpp 11 #include "GlyphIterator.h"
16 le_uint32 LigatureSubstitutionSubtable::process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter) const
18 LEGlyphID glyph = glyphIterator->getCurrGlyphID();
30 le_int32 startPosition = glyphIterator->getCurrStreamPosition();
35 if (! glyphIterator->next()) {
39 if (LE_GET_GLYPH(glyphIterator->getCurrGlyphID()) != SWAPW(ligTable->componentArray[comp])) {
45 GlyphIterator tempIterator(*glyphIterator);
60 glyphIterator->setCurrStreamPosition(startPosition)
    [all...]
AlternateSubstSubtables.cpp 12 #include "GlyphIterator.h"
17 le_uint32 AlternateSubstitutionSubtable::process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter) const
20 LEGlyphID glyph = glyphIterator->getCurrGlyphID();
33 glyphIterator->setCurrGlyphID(SWAPW(alternateSetTable->alternateArray[0]));
MarkToBasePosnSubtables.cpp 15 #include "GlyphIterator.h"
20 LEGlyphID MarkToBasePositioningSubtable::findBaseGlyph(GlyphIterator *glyphIterator) const
22 if (glyphIterator->prev()) {
23 return glyphIterator->getCurrGlyphID();
29 le_int32 MarkToBasePositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
31 LEGlyphID markGlyph = glyphIterator->getCurrGlyphID();
51 GlyphIterator baseIterator(*glyphIterator, (le_uint16) (lfIgnoreMarks /*| lfIgnoreLigatures*/))
    [all...]
PairPositioningSubtables.cpp 13 #include "GlyphIterator.h"
19 le_uint32 PairPositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
30 return subtable->process(glyphIterator, fontInstance);
37 return subtable->process(glyphIterator, fontInstance);
45 le_uint32 PairPositioningFormat1Subtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
47 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID();
49 GlyphIterator tempIterator(*glyphIterator);
    [all...]
MarkToLigaturePosnSubtables.cpp 14 #include "GlyphIterator.h"
19 LEGlyphID MarkToLigaturePositioningSubtable::findLigatureGlyph(GlyphIterator *glyphIterator) const
21 if (glyphIterator->prev()) {
22 return glyphIterator->getCurrGlyphID();
28 le_int32 MarkToLigaturePositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const
30 LEGlyphID markGlyph = glyphIterator->getCurrGlyphID();
50 GlyphIterator ligatureIterator(*glyphIterator, (le_uint16) (lfIgnoreMarks /*| lfIgnoreBaseGlyphs*/))
    [all...]
GlyphSubstLookupProc.cpp 52 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const
69 delta = subtable->process(glyphIterator, fFilter);
77 delta = subtable->process(glyphIterator, success, fFilter);
85 delta = subtable->process(glyphIterator, fFilter);
93 delta = subtable->process(glyphIterator, fFilter);
101 delta = subtable->process(this, glyphIterator, fontInstance, success);
109 delta = subtable->process(this, glyphIterator, fontInstance, success);
117 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
MultipleSubstSubtables.cpp 12 #include "GlyphIterator.h"
17 le_uint32 MultipleSubstitutionSubtable::process(GlyphIterator *glyphIterator, LEErrorCode& success, const LEGlyphFilter *filter) const
23 LEGlyphID glyph = glyphIterator->getCurrGlyphID();
45 glyphIterator->setCurrGlyphID(0xFFFF);
54 glyphIterator->setCurrGlyphID(substitute);
69 LEGlyphID *newGlyphs = glyphIterator->insertGlyphs(glyphCount, success);
76 if (glyphIterator->isRightToLeft()) {
ContextualSubstSubtables.cpp 11 #include "GlyphIterator.h"
28 GlyphIterator *glyphIterator,
37 GlyphIterator tempIterator(*glyphIterator);
51 GlyphIterator *glyphIterator, le_bool backtrack)
62 if (! glyphIterator->next()) {
66 TTGlyphID glyph = (TTGlyphID) glyphIterator->getCurrGlyphID();
80 GlyphIterator *glyphIterator
    [all...]
ContextualSubstSubtables.h 19 #include "GlyphIterator.h"
33 const TTGlyphID *glyphArray, le_uint16 glyphCount, GlyphIterator *glyphIterator,
37 const le_uint16 *classArray, le_uint16 glyphCount, GlyphIterator *glyphIterator,
42 GlyphIterator *glyphIterator, const char *offsetBase, le_bool backtrack = FALSE);
48 GlyphIterator *glyphIterator,
56 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const
    [all...]
PairPositioningSubtables.h 20 #include "GlyphIterator.h"
43 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
51 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
78 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
ExtensionSubtables.cpp 13 #include "GlyphIterator.h"
23 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const
35 return lookupProcessor->applySubtable(subtable, elt, glyphIterator, fontInstance, success);
SubstitutionLookups.cpp 11 #include "GlyphIterator.h"
29 GlyphIterator *glyphIterator,
38 GlyphIterator tempIterator(*glyphIterator);
AlternateSubstSubtables.h 19 #include "GlyphIterator.h"
34 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
AttachmentPosnSubtables.h 19 #include "GlyphIterator.h"
32 le_uint32 process(GlyphIterator *glyphIterator) const;
CursiveAttachmentSubtables.h 22 class GlyphIterator;
35 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;

Completed in 516 milliseconds

1 2