HomeSort by relevance Sort by last modified time
    Searched defs:Glyph (Results 1 - 3 of 3) sorted by null

  /external/webkit/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...]
GlyphWidthMap.h 38 typedef unsigned short Glyph;
47 float widthForGlyph(Glyph glyph)
49 return locatePage(glyph / GlyphWidthPage::size)->widthForGlyph(glyph);
52 void setWidthForGlyph(Glyph glyph, float width)
54 locatePage(glyph / GlyphWidthPage::size)->setWidthForGlyph(glyph, width);
62 float widthForGlyph(Glyph glyph) const { return m_widths[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...]

Completed in 20 milliseconds