Searched refs:glyphID (Results 1 - 21 of 21) sorted by relevance

/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DCoverageTables.h24 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
32 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
40 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
H A DCoverageTables.cpp15 le_int32 CoverageTable::getGlyphCoverage(LEGlyphID glyphID) const
26 return f1Table->getGlyphCoverage(glyphID);
33 return f2Table->getGlyphCoverage(glyphID);
41 le_int32 CoverageFormat1Table::getGlyphCoverage(LEGlyphID glyphID) const
43 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
74 le_int32 CoverageFormat2Table::getGlyphCoverage(LEGlyphID glyphID) const
76 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
H A DClassDefinitionTables.h24 le_int32 getGlyphClass(LEGlyphID glyphID) const;
34 le_int32 getGlyphClass(LEGlyphID glyphID) const;
50 le_int32 getGlyphClass(LEGlyphID glyphID) const;
H A DCursiveAttachmentSubtables.cpp19 LEGlyphID glyphID = glyphIterator->getCurrGlyphID(); local
20 le_int32 coverageIndex = getGlyphCoverage(glyphID);
35 entryAnchorTable->getAnchor(glyphID, fontInstance, entryAnchor);
44 exitAnchorTable->getAnchor(glyphID, fontInstance, exitAnchor);
H A DLookups.h36 inline le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
38 le_int32 getGlyphCoverage(Offset tableOffset, LEGlyphID glyphID) const;
59 inline le_int32 LookupSubtable::getGlyphCoverage(LEGlyphID glyphID) const
61 return getGlyphCoverage(coverageTableOffset, glyphID);
H A DClassDefinitionTables.cpp15 le_int32 ClassDefinitionTable::getGlyphClass(LEGlyphID glyphID) const
25 return f1Table->getGlyphClass(glyphID);
32 return f2Table->getGlyphClass(glyphID);
65 le_int32 ClassDefFormat1Table::getGlyphClass(LEGlyphID glyphID) const
67 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
92 le_int32 ClassDefFormat2Table::getGlyphClass(LEGlyphID glyphID) const
94 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyphID);
H A DAnchorTables.h27 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance,
40 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const;
H A DLookups.cpp37 le_int32 LookupSubtable::getGlyphCoverage(Offset tableOffset, LEGlyphID glyphID) const
41 return coverageTable->getGlyphCoverage(glyphID);
H A DMarkArrays.cpp16 le_int32 MarkArray::getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstance, argument
29 anchorTable->getAnchor(glyphID, fontInstance, anchor);
H A DMarkArrays.h32 le_int32 getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstance,
H A DAnchorTables.cpp15 void AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, argument
31 f2->getAnchor(glyphID, fontInstance, anchor);
63 void Format2AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const argument
67 if (! fontInstance->getGlyphPoint(glyphID, SWAPW(anchorPoint), point)) {
H A DOpenTypeUtilities.h24 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount);
H A DOpenTypeUtilities.cpp81 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount) argument
93 if (SWAPW(records[extra].firstGlyph) <= glyphID) {
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) {
105 if (SWAPW(records[range].firstGlyph) <= glyphID && SWAPW(records[range].lastGlyph) >= glyphID) {
H A DPairPositioningSubtables.cpp127 const PairValueRecord *PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize) const argument
136 if (SWAPW(record->secondGlyph) == glyphID) {
150 if (SWAPW(trial->secondGlyph) <= glyphID) {
158 if (SWAPW(trial->secondGlyph) <= glyphID) {
163 if (SWAPW(record->secondGlyph) == glyphID) {
H A DPairPositioningSubtables.h54 const PairValueRecord *findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records,
H A DGlyphPositionAdjustments.cpp107 LEGlyphID glyphID = glyphStorage[i]; local
120 fontInstance->getGlyphAdvance(glyphID, pixels);
141 lastExitGlyphID = glyphID;
H A DGlyphIterator.cpp193 void GlyphIterator::setCurrGlyphID(TTGlyphID glyphID) argument
197 glyphStorage[position] = LE_SET_GLYPH(glyph, glyphID);
358 LEGlyphID glyphID = glyphStorage[index]; local
361 if (LE_GET_GLYPH(glyphID) >= 0xFFFE) {
366 glyphClass = glyphClassDefinitionTable->getGlyphClass(glyphID);
389 return markAttachClassDefinitionTable->getGlyphClass(glyphID) != markAttachType;
H A DGlyphIterator.h57 void setCurrGlyphID(TTGlyphID glyphID);
H A DLEGlyphStorage.h387 * @param glyphID the new glyph ID
392 void setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success);
H A DLEGlyphStorage.cpp273 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success) argument
289 fGlyphs[glyphIndex] = glyphID;
/macosx-10.9.5/emacs-92/emacs/src/
H A Dmacterm.c1284 xassert (glyph_info_array.glyphs[0].glyphID);
1285 *cg_glyph = glyph_info_array.glyphs[0].glyphID;

Completed in 115 milliseconds