/external/skia/src/pdf/ |
SkPDFFont.h | 28 void set(const uint16_t* glyphIDs, int numGlyphs); 31 void exportTo(SkTDArray<uint32_t>* glyphIDs) const; 63 void noteGlyphUsage(SkPDFFont* font, const uint16_t* glyphIDs, 115 * @param glyphIDs The input text as glyph IDs. 119 int glyphsToPDFFontEncoding(uint16_t* glyphIDs, int numGlyphs);
|
SkPDFFont.cpp | 642 void SkPDFGlyphSet::set(const uint16_t* glyphIDs, int numGlyphs) { 644 fBitSet.setBit(glyphIDs[i], true); 656 void SkPDFGlyphSet::exportTo(SkTDArray<unsigned int>* glyphIDs) const { 657 fBitSet.exportTo(glyphIDs); 706 void SkPDFGlyphSetMap::noteGlyphUsage(SkPDFFont* font, const uint16_t* glyphIDs, 710 subset->set(glyphIDs, numGlyphs); 776 int SkPDFFont::glyphsToPDFFontEncoding(uint16_t* glyphIDs, int numGlyphs) { 783 if (glyphIDs[i] == 0) { 786 if (glyphIDs[i] < fFirstGlyphID || glyphIDs[i] > fLastGlyphID) [all...] |
SkPDFDevice.cpp | 129 const uint16_t** glyphIDs) { 135 *glyphIDs = storage->get(); 152 *glyphIDs = static_cast<const uint16_t*>(text); 168 *glyphIDs = storage->get(); [all...] |
/external/skia/src/fonts/ |
SkGScalerContext.h | 27 const uint32_t* glyphIDs,
|
SkRandomScalerContext.h | 32 const uint32_t* glyphIDs,
|
SkTestScalerContext.h | 73 const uint32_t* glyphIDs,
|
SkRandomScalerContext.cpp | 213 const uint32_t* glyphIDs, 215 return fProxy->getAdvancedTypefaceMetrics(info, glyphIDs, glyphIDsCount);
|
SkGScalerContext.cpp | 180 const uint32_t* glyphIDs, 182 return fProxy->getAdvancedTypefaceMetrics(info, glyphIDs, glyphIDsCount);
|
SkTestScalerContext.cpp | 146 const uint32_t* glyphIDs,
|
/frameworks/base/libs/hwui/ |
SkiaCanvasProxy.cpp | 214 * into glyphIDs. 221 glyphIDs = (uint16_t*)text; 226 glyphIDs = storage.get(); 233 uint16_t* glyphIDs; 241 // convert to glyphIDs if necessary 247 glyphs.paint.getTextWidths(glyphs.glyphIDs, glyphs.count << 1, glyphWidths.get()); 253 glyphs.paint.measureText(glyphs.glyphIDs, glyphs.count << 1, &bounds); 293 mCanvas->drawGlyphs(glyphs.glyphIDs, &pointStorage[0].fX, glyphs.count, glyphs.paint, 299 // convert to glyphIDs if necessary 328 glyphs.paint.measureText(&glyphs.glyphIDs[i], sizeof(uint16_t), &glyphBounds) [all...] |
/external/skia/include/core/ |
SkTypeface.h | 343 const uint32_t* glyphIDs, 385 @param glyphIDs For per-glyph info, specify subset of the font by 389 glyphIDs is NULL. 394 const uint32_t* glyphIDs = NULL,
|
/external/skia/src/core/ |
SkAdvancedTypefaceMetrics.h | 148 @param glyphIDs For per-glyph info, specify subset of the font by 152 glyphIDs is nullptr. 158 const uint32_t* glyphIDs,
|
SkTypeface.cpp | 286 const uint32_t* glyphIDs, 289 this->onGetAdvancedTypefaceMetrics(info, glyphIDs, glyphIDsCount);
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
otTables.py | 88 glyphIDs = [getGlyphID(glyphName) for glyphName in glyphs ] 89 brokenOrder = sorted(glyphIDs) != glyphIDs 91 last = glyphIDs[0] 93 for glyphID in glyphIDs[1:]:
|
/external/skia/src/ports/ |
SkTypeface_win_dw.cpp | 334 const uint32_t* glyphIDs, 456 glyphIDs,
|
SkFontHost_FreeType.cpp | 460 const uint32_t* glyphIDs, 617 glyphIDs, [all...] |
SkFontHost_mac.cpp | [all...] |
SkFontHost_win.cpp | [all...] |
/external/skia/tools/lua/ |
glyph-usage.lua | 71 -- other is just an array[1...N] of numbers (glyphIDs)
|