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

1 2 3

  /external/icu/icu4c/source/layout/
CoverageTables.h 24 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
32 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
42 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
Lookups.h 36 inline le_int32 getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, LEGlyphID glyphID, LEErrorCode &success) const;
38 le_int32 getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const;
41 inline le_int32 getGlyphCoverage(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
43 inline le_int32 getGlyphCoverage(const LETableReference &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const;
66 inline le_int32 LookupSubtable::getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, LEGlyphID glyphID, LEErrorCode &success) const
68 return getGlyphCoverage(base, coverageTableOffset, glyphID, success);
71 inline le_int32 LookupSubtable::getGlyphCoverage(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const {
73 return getGlyphCoverage(thisRef, glyphID, success);
76 inline le_int32 LookupSubtable::getGlyphCoverage(const LETableReference &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const {
78 return getGlyphCoverage(thisRef, tableOffset, glyphID, success)
    [all...]
CoverageTables.cpp 15 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);
ClassDefinitionTables.h 24 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
27 le_int32 getGlyphClass(LEGlyphID glyphID) const {
30 return getGlyphClass(base,glyphID,ignored);
46 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
64 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
OpenTypeUtilities.h 24 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount) {
28 return getGlyphRangeIndex(glyphID, recordRef, success);
30 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success);
AnchorTables.h 27 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance,
40 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const;
MarkArrays.cpp 16 le_int32 MarkArray::getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstance,
29 anchorTable->getAnchor(glyphID, fontInstance, anchor);
CursiveAttachmentSubtables.cpp 19 LEGlyphID glyphID = glyphIterator->getCurrGlyphID();
20 le_int32 coverageIndex = getGlyphCoverage(base, glyphID, success);
38 entryAnchorTable->getAnchor(glyphID, fontInstance, entryAnchor);
47 exitAnchorTable->getAnchor(glyphID, fontInstance, exitAnchor);
MarkArrays.h 32 le_int32 getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstance,
AnchorTables.cpp 15 void AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance,
31 f2->getAnchor(glyphID, fontInstance, anchor);
63 void Format2AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const
67 if (! fontInstance->getGlyphPoint(glyphID, SWAPW(anchorPoint), point)) {
ClassDefinitionTables.cpp 15 le_int32 ClassDefinitionTable::getGlyphClass(const LETableReference& base, LEGlyphID glyphID, LEErrorCode &success) const
27 return f1Table->getGlyphClass(f1Table, glyphID, success);
33 return f2Table->getGlyphClass(f2Table, glyphID, success);
67 le_int32 ClassDefFormat1Table::getGlyphClass(const LETableReference& base, LEGlyphID glyphID, LEErrorCode &success) const
73 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
100 le_int32 ClassDefFormat2Table::getGlyphClass(const LETableReference& base, LEGlyphID glyphID, LEErrorCode &success) const
103 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyphID);
Lookups.cpp 37 le_int32 LookupSubtable::getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const
43 return coverageTable->getGlyphCoverage(glyphID);
OpenTypeUtilities.cpp 95 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success)
110 if (SWAPW(records(extra,success).firstGlyph) <= glyphID) {
117 if (SWAPW(records(range + probe,success).firstGlyph) <= glyphID) {
122 if (SWAPW(records(range,success).firstGlyph) <= glyphID && SWAPW(records(range,success).lastGlyph) >= glyphID) {
PairPositioningSubtables.cpp 132 const PairValueRecord *PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize) const
141 if (SWAPW(record->secondGlyph) == glyphID) {
155 if (SWAPW(trial->secondGlyph) <= glyphID) {
163 if (SWAPW(trial->secondGlyph) <= glyphID) {
168 if (SWAPW(record->secondGlyph) == glyphID) {
GlyphPositionAdjustments.cpp 107 LEGlyphID glyphID = glyphStorage[i];
120 fontInstance->getGlyphAdvance(glyphID, pixels);
141 lastExitGlyphID = glyphID;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ClassTable.java 21 private int glyphID;
24 public ClassEntry(int glyphID, int classID)
26 this.glyphID = glyphID;
32 return glyphID;
42 return this.glyphID - that.glyphID;
66 public static int search(ClassEntry[] table, int glyphID)
74 if (table[extra].glyphID <= glyphID) {
    [all...]
  /external/skia/src/pdf/
SkPDFFontImpl.h 66 uint16_t glyphID,
69 bool populate(int16_t glyphID);
85 uint16_t glyphID);
87 bool populate(uint16_t glyphID);
SkPDFFont.h 29 bool has(uint16_t glyphID) const;
109 bool hasGlyph(uint16_t glyphID);
121 /** Get the font resource for the passed typeface and glyphID. The
127 * @param glyphID Specify which section of a large font is of interest.
131 uint16_t glyphID);
169 void setLastGlyphID(uint16_t glyphID);
179 * including the passed glyphID.
181 void adjustGlyphRangeForSingleByteEncoding(uint16_t glyphID);
191 uint16_t glyphID,
194 static bool Find(uint32_t fontID, uint16_t glyphID, int* index)
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
T_S_I__0.py 8 def fixlongs(glyphID, textLength, textOffset):
9 return int(glyphID), int(textLength), textOffset
21 glyphID, textLength, textOffset = fixlongs(*struct.unpack(tsi0Format, data[:size]))
22 indices.append((glyphID, textLength, textOffset))
_h_d_m_x.py 24 for glyphID in range(numGlyphs):
25 widths[glyphOrder[glyphID]] = byteord(data[glyphID+2])
41 for glyphID in range(len(glyphOrder)):
42 width = widths[glyphOrder[glyphID]]
_p_o_s_t.py 92 for glyphID in range(numGlyphs):
93 index = indices[glyphID]
99 glyphOrder[glyphID] = name
157 for glyphID in range(numGlyphs):
158 glyphName = glyphOrder[glyphID]
182 for glyphID in glyphOrder:
183 glyphID = glyphID.split('#')[0]
184 if glyphID in agl.AGL2UV:
185 indices.append(agl.AGL2UV[glyphID])
    [all...]
otTables.py 37 # manual implementation to get rid of glyphID dependencies
74 glyphs.extend(glyphOrder[glyphID] for glyphID in range(startID, endID))
93 for glyphID in glyphIDs[1:]:
94 if glyphID != last + 1:
96 ranges.append([glyphID])
97 last = glyphID
151 outGIDS = [ glyphID + delta for glyphID in inputGIDS ]
153 outNames = [ font.getGlyphName(glyphID) for glyphID in outGIDS
    [all...]
  /external/skia/src/gpu/
GrGlyph.h 62 uint16_t glyphID() const { return UnpackID(fPackedID); }
71 static inline PackedID Pack(uint16_t glyphID, SkFixed x, SkFixed y, MaskStyle ms) {
75 return (dfFlag << 20) | (x << 18) | (y << 16) | glyphID;
GrPathRendering.cpp 34 void generatePath(int glyphID, SkPath* out) override {
36 skGlyph.initWithGlyphID(glyphID);
  /external/fonttools/Lib/fontTools/ttLib/
__init__.py 459 # - make up glyph names based on glyphID
476 # Make up glyph names based on glyphID, which will be used by the
538 def getGlyphName(self, glyphID, requireReal=False):
540 return self.getGlyphOrder()[glyphID]
545 return "glyph%.5d" % glyphID
549 glyphName = self.VIDDict[glyphID]
551 glyphName ="glyph%.5d" % glyphID
552 self.last_vid = min(glyphID, self.last_vid )
553 self.reverseVIDDict[glyphName] = glyphID
554 self.VIDDict[glyphID] = glyphNam
    [all...]

Completed in 182 milliseconds

1 2 3