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

1 2

  /external/icu4c/layout/
CoverageTables.h 24 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
32 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
40 le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
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(LEGlyphID glyphID) const;
34 le_int32 getGlyphClass(LEGlyphID glyphID) const;
50 le_int32 getGlyphClass(LEGlyphID glyphID) const;
CursiveAttachmentSubtables.cpp 19 LEGlyphID glyphID = glyphIterator->getCurrGlyphID();
20 le_int32 coverageIndex = getGlyphCoverage(glyphID);
35 entryAnchorTable->getAnchor(glyphID, fontInstance, entryAnchor);
44 exitAnchorTable->getAnchor(glyphID, fontInstance, exitAnchor);
Lookups.h 36 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);
ClassDefinitionTables.cpp 15 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);
AnchorTables.h 27 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance,
40 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const;
Lookups.cpp 37 le_int32 LookupSubtable::getGlyphCoverage(Offset tableOffset, LEGlyphID glyphID) const
41 return coverageTable->getGlyphCoverage(glyphID);
MarkArrays.cpp 16 le_int32 MarkArray::getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstance,
29 anchorTable->getAnchor(glyphID, fontInstance, anchor);
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)) {
OpenTypeUtilities.h 24 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount);
OpenTypeUtilities.cpp 81 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount)
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) {
PairPositioningSubtables.cpp 127 const PairValueRecord *PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize) const
136 if (SWAPW(record->secondGlyph) == glyphID) {
150 if (SWAPW(trial->secondGlyph) <= glyphID) {
158 if (SWAPW(trial->secondGlyph) <= glyphID) {
163 if (SWAPW(record->secondGlyph) == glyphID) {
PairPositioningSubtables.h 54 const PairValueRecord *findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records,
GlyphPositionAdjustments.cpp 107 LEGlyphID glyphID = glyphStorage[i];
120 fontInstance->getGlyphAdvance(glyphID, pixels);
141 lastExitGlyphID = glyphID;
GlyphIterator.cpp 193 void GlyphIterator::setCurrGlyphID(TTGlyphID glyphID)
197 glyphStorage[position] = LE_SET_GLYPH(glyph, glyphID);
358 LEGlyphID glyphID = glyphStorage[index];
361 if (LE_GET_GLYPH(glyphID) >= 0xFFFE) {
366 glyphClass = glyphClassDefinitionTable->getGlyphClass(glyphID);
389 return markAttachClassDefinitionTable->getGlyphClass(glyphID) != markAttachType;
GlyphIterator.h 57 void setCurrGlyphID(TTGlyphID glyphID);
LEGlyphStorage.h 388 * @param glyphID the new glyph ID
393 void setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success);
  /external/webkit/WebCore/platform/graphics/android/
GlyphMapAndroid.cpp 69 uint16_t glyphID = glyphs[i];
71 if (!glyphID)
72 glyphID = EmojiFont::UnicharToGlyph(uni);
73 setGlyphDataForIndex(offset + i, glyphID, fontData);
74 allGlyphs |= glyphID;
78 uint16_t glyphID = glyphs[i];
79 setGlyphDataForIndex(offset + i, glyphID, fontData);
80 allGlyphs |= glyphID;
  /external/skia/emoji/
EmojiFont.cpp 162 SkScalar EmojiFont::GetAdvanceWidth(uint16_t glyphID, const SkPaint& paint) {
163 if (glyphID < kGlyphBase) {
165 glyphID);
169 const SkBitmap* bitmap = get_bitmap(glyphID - kGlyphBase);
183 void EmojiFont::Draw(SkCanvas* canvas, uint16_t glyphID,
185 if (glyphID < kGlyphBase) {
186 SkDebugf("-------- bad glyph passed to EmojiFont::Draw %d\n", glyphID);
189 const SkBitmap* bitmap = get_bitmap(glyphID - kGlyphBase);
  /external/skia/src/core/
SkScalerContext.cpp 224 unsigned glyphID = glyph.getGlyphID();
228 if (glyphID < count) {
231 glyphID -= count;
247 unsigned glyphID;
249 glyphID = ctx->generateCharToGlyph(uni);
250 if (glyphID) {
258 // add the ctx's base, making glyphID unique for chain of contexts
259 glyphID += ctx->fBaseGlyphCount;
260 // check for overflow of 16bits, since our glyphID cannot exceed that
261 if (glyphID > 0xFFFF)
    [all...]
SkGlyphCache.cpp 131 SkUnichar SkGlyphCache::glyphToUnichar(uint16_t glyphID) {
132 return fScalerContext->glyphIDToChar(glyphID);
152 const SkGlyph& SkGlyphCache::getGlyphIDAdvance(uint16_t glyphID) {
154 uint32_t id = SkGlyph::MakeID(glyphID);
159 glyph = this->lookupMetrics(glyphID, kJustAdvance_MetricsType);
212 const SkGlyph& SkGlyphCache::getGlyphIDMetrics(uint16_t glyphID) {
214 uint32_t id = SkGlyph::MakeID(glyphID);
220 glyph = this->lookupMetrics(glyphID, kFull_MetricsType);
232 const SkGlyph& SkGlyphCache::getGlyphIDMetrics(uint16_t glyphID,
235 uint32_t id = SkGlyph::MakeID(glyphID, x, y)
    [all...]
SkPaint.cpp 393 const uint16_t* glyphID = static_cast<const uint16_t*>(textData);
396 if (0 == glyphID[i]) {
491 unsigned glyphID = *ptr;
494 return cache->getGlyphIDMetrics(glyphID);
504 unsigned glyphID = *ptr;
506 return cache->getGlyphIDMetrics(glyphID);
549 unsigned glyphID = *ptr;
552 return cache->getGlyphIDAdvance(glyphID);
562 unsigned glyphID = *ptr;
564 return cache->getGlyphIDAdvance(glyphID);
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GlyphPageTreeNodeMac.cpp 76 Glyph glyph = glyphRecord->glyphID;

Completed in 1172 milliseconds

1 2