/external/webkit/Source/WebCore/platform/graphics/ |
GlyphPageTreeNode.h | 49 typedef unsigned short Glyph; 51 // Holds the glyph index and the corresponding SimpleFontData information for a given 54 GlyphData(Glyph g = 0, const SimpleFontData* f = 0) 55 : glyph(g) 59 Glyph glyph; member in struct:WebCore::GlyphData 93 Glyph glyphAt(unsigned index) const 104 void setGlyphDataForCharacter(UChar32 c, Glyph g, const SimpleFontData* f) 108 void setGlyphDataForIndex(unsigned index, Glyph g, const SimpleFontData* f) 116 setGlyphDataForIndex(index, glyphData.glyph, glyphData.fontData) [all...] |
GlyphMetricsMap.h | 39 typedef unsigned short Glyph; 53 T metricsForGlyph(Glyph glyph) 55 return locatePage(glyph / GlyphMetricsPage::size)->metricsForGlyph(glyph); 58 void setMetricsForGlyph(Glyph glyph, const T& metrics) 60 locatePage(glyph / GlyphMetricsPage::size)->setMetricsForGlyph(glyph, metrics); 68 T metricsForGlyph(Glyph glyph) const { return m_metrics[glyph % size]; [all...] |
GlyphBuffer.h | 47 typedef unsigned short Glyph; 56 typedef Glyph GlyphBufferGlyph; 114 Glyph glyphAt(int index) const 144 void add(Glyph glyph, const SimpleFontData* font, float width, const FloatSize* offset = 0) 150 cairoGlyph.index = glyph; 153 m_glyphs.append(glyph); 176 void add(Glyph glyph, const SimpleFontData* font, GlyphBufferAdvance advance) 181 cairoGlyph.index = glyph; [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
SVGTextMetrics.h | 42 struct Glyph { 43 Glyph() 48 bool operator==(const Glyph& other) 61 const Glyph& glyph() const { return m_glyph; } function in class:WebCore::SVGTextMetrics 74 Glyph m_glyph;
|