HomeSort by relevance Sort by last modified time
    Searched refs:hbFont (Results 1 - 5 of 5) sorted by null

  /external/skia/src/ports/
SkHarfBuzzFont.cpp 32 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters,
35 SkHarfBuzzFont* font = reinterpret_cast<SkHarfBuzzFont*>(hbFont->userData);
56 static void glyphsToAdvances(HB_Font hbFont, const HB_Glyph* glyphs,
58 SkHarfBuzzFont* font = reinterpret_cast<SkHarfBuzzFont*>(hbFont->userData);
79 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters,
81 SkHarfBuzzFont* font = reinterpret_cast<SkHarfBuzzFont*>(hbFont->userData);
89 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags,
92 SkHarfBuzzFont* font = reinterpret_cast<SkHarfBuzzFont*>(hbFont->userData);
117 static void getGlyphMetrics(HB_Font hbFont, HB_Glyph glyph,
119 SkHarfBuzzFont* font = reinterpret_cast<SkHarfBuzzFont*>(hbFont->userData)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
HarfbuzzSkia.cpp 54 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length, HB_Glyph* glyphs, hb_uint32* glyphsSize, HB_Bool isRTL)
56 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
76 static void glyphsToAdvances(HB_Font hbFont, const HB_Glyph* glyphs, hb_uint32 numGlyphs, HB_Fixed* advances, int flags)
78 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
102 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length)
104 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
122 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints)
124 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
151 static void getGlyphMetrics(HB_Font hbFont, HB_Glyph glyph, HB_GlyphMetrics* metrics)
153 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp 58 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length, HB_Glyph* glyphs, hb_uint32* glyphsSize, HB_Bool isRTL)
60 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
89 static void glyphsToAdvances(HB_Font hbFont, const HB_Glyph* glyphs, hb_uint32 numGlyphs, HB_Fixed* advances, int flags)
91 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
115 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length)
117 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
139 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints)
141 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData);
168 static void getGlyphMetrics(HB_Font hbFont, HB_Glyph glyph, HB_GlyphMetrics* metrics)
170 FontPlatformData* font = reinterpret_cast<FontPlatformData*>(hbFont->userData)
    [all...]
  /frameworks/base/core/jni/android/graphics/
HarfbuzzSkia.cpp 57 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length,
60 FontData* data = reinterpret_cast<FontData*>(hbFont->userData);
78 static void glyphsToAdvances(HB_Font hbFont, const HB_Glyph* glyphs, hb_uint32 numGlyphs,
81 FontData* data = reinterpret_cast<FontData*>(hbFont->userData);
107 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length)
109 FontData* data = reinterpret_cast<FontData*>(hbFont->userData);
129 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point,
132 FontData* data = reinterpret_cast<FontData*>(hbFont->userData);
160 static void getGlyphMetrics(HB_Font hbFont, HB_Glyph glyph, HB_GlyphMetrics* metrics)
162 FontData* data = reinterpret_cast<FontData*>(hbFont->userData)
    [all...]
  /external/harfbuzz/tests/shaping/
main.cpp 216 HB_FontRec hbFont;
217 hbFont.klass = &hb_fontClass;
218 hbFont.userData = face;
219 hbFont.x_ppem = face->size->metrics.x_ppem;
220 hbFont.y_ppem = face->size->metrics.y_ppem;
221 hbFont.x_scale = face->size->metrics.x_scale;
222 hbFont.y_scale = face->size->metrics.y_scale;
233 shaper_item.font = &hbFont;

Completed in 378 milliseconds