Home
last modified time | relevance | path

Searched refs:Glyph (Results 1 – 25 of 39) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/
DSimpleFontData.h111 FloatRect boundsForGlyph(Glyph) const;
112 float widthForGlyph(Glyph glyph) const;
113 FloatRect platformBoundsForGlyph(Glyph) const;
114 float platformWidthForGlyph(Glyph) const;
122 Glyph spaceGlyph() const { return m_spaceGlyph; } in spaceGlyph()
123 … bool isZeroWidthSpaceGlyph(Glyph glyph) const { return glyph == m_zeroWidthSpaceGlyph && glyph; } in isZeroWidthSpaceGlyph()
202 FloatRect boundsForGDIGlyph(Glyph glyph) const;
203 float widthForGDIGlyph(Glyph glyph) const;
228 Glyph m_spaceGlyph;
231 Glyph m_zeroWidthSpaceGlyph;
[all …]
DGlyphPageTreeNode.h49 typedef unsigned short Glyph; typedef
54 GlyphData(Glyph g = 0, const SimpleFontData* f = 0)
59 Glyph glyph;
93 Glyph glyphAt(unsigned index) const in glyphAt()
104 void setGlyphDataForCharacter(UChar32 c, Glyph g, const SimpleFontData* f) in setGlyphDataForCharacter()
108 void setGlyphDataForIndex(unsigned index, Glyph g, const SimpleFontData* f) in setGlyphDataForIndex()
143 Glyph m_glyphs[size];
DGlyphMetricsMap.h39 typedef unsigned short Glyph; typedef
53 T metricsForGlyph(Glyph glyph) in metricsForGlyph()
58 void setMetricsForGlyph(Glyph glyph, const T& metrics) in setMetricsForGlyph()
68 T metricsForGlyph(Glyph glyph) const { return m_metrics[glyph % size]; } in metricsForGlyph()
69 void setMetricsForGlyph(Glyph glyph, const T& metrics) in setMetricsForGlyph()
DGlyphBuffer.h47 typedef unsigned short Glyph; typedef
56 typedef Glyph GlyphBufferGlyph;
114 Glyph glyphAt(int index) const in glyphAt()
144 void add(Glyph glyph, const SimpleFontData* font, float width, const FloatSize* offset = 0)
176 void add(Glyph glyph, const SimpleFontData* font, GlyphBufferAdvance advance) in add()
DFontFastPath.cpp405 inline static float offsetToMiddleOfGlyph(const SimpleFontData* fontData, Glyph glyph) in offsetToMiddleOfGlyph()
431 Glyph markGlyph = markGlyphData.glyph; in drawEmphasisMarks()
432 Glyph spaceGlyph = markFontData->spaceGlyph(); in drawEmphasisMarks()
/external/webkit/Source/WebCore/rendering/svg/
DSVGTextMetrics.h42 struct Glyph { struct
43 Glyph() in Glyph() function
48 bool operator==(const Glyph& other)
61 const Glyph& glyph() const { return m_glyph; } in glyph() argument
74 Glyph m_glyph;
DSVGTextLayoutEngineSpacing.h38 float calculateSVGKerning(bool isVerticalText, const SVGTextMetrics::Glyph& currentGlyph);
46 SVGTextMetrics::Glyph m_lastGlyph;
DSVGTextLayoutEngineSpacing.cpp40 …tEngineSpacing::calculateSVGKerning(bool isVerticalText, const SVGTextMetrics::Glyph& currentGlyph) in calculateSVGKerning()
/external/webkit/Source/WebCore/platform/graphics/chromium/
DGlyphPageTreeNodeChromiumWin.cpp53 static Glyph initSpaceGlyph(HDC dc, Glyph* spaceGlyph) in initSpaceGlyph()
140 Glyph spaceGlyph = 0; // Glyph for a space. Lazily filled. in fillBMPGlyphs()
144 Glyph glyph = localGlyphBuffer[i]; in fillBMPGlyphs()
DSimpleFontDataLinux.cpp141 const Glyph xGlyph = glyphPageZero->glyphDataForCharacter(x_char).glyph; in platformInit()
215 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
220 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
DSimpleFontDataChromiumWin.cpp177 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
182 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
/external/webkit/Source/WebCore/platform/graphics/wx/
DSimpleFontDataWx.cpp140 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
145 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
185 float SimpleFontData::widthForGDIGlyph(Glyph glyph) const in widthForGDIGlyph()
/external/webkit/Source/WebCore/platform/graphics/win/
DSimpleFontDataCGWin.cpp101 Glyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0; in platformInit()
125 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph glyph) const in platformBoundsForGlyph()
141 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
DSimpleFontDataCairoWin.cpp102 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph glyph) const in platformBoundsForGlyph()
110 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
DGlyphPageTreeNodeCGWin.cpp48 Glyph glyph = localGlyphBuffer[i]; in fill()
DGlyphPageTreeNodeCairoWin.cpp57 Glyph glyph = localGlyphBuffer[i]; in fill()
DSimpleFontDataWin.cpp205 FloatRect SimpleFontData::boundsForGDIGlyph(Glyph glyph) const in boundsForGDIGlyph()
222 float SimpleFontData::widthForGDIGlyph(Glyph glyph) const in widthForGDIGlyph()
/external/webkit/Source/WebCore/platform/graphics/freetype/
DSimpleFontDataFreeType.cpp141 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
146 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
DGlyphPageTreeNodeFreeType.cpp54 Glyph glyph = FcFreeTypeCharIndex(face, buffer[i]); in fill()
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
DFontDataAndroid.cpp122 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
127 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
/external/webkit/Source/WebCore/platform/graphics/pango/
DSimpleFontDataPango.cpp143 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
148 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
DGlyphPageTreeNodePango.cpp86Glyph glyph = pango_font_get_glyph(fontData->platformData().m_font, fontData->platformData().m_con… in fill()
/external/webkit/Source/WebCore/platform/graphics/wince/
DSimpleFontDataWinCE.cpp149 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const in platformBoundsForGlyph()
154 float SimpleFontData::platformWidthForGlyph(Glyph glyph) const in platformWidthForGlyph()
/external/webkit/Source/WebCore/platform/graphics/skia/
DGlyphPageTreeNodeSkia.cpp69 glyphs[i] = static_cast<Glyph>(buffer->out_string[i].gindex); in substituteWithVerticalGlyphs()
/external/webkit/Source/WebCore/platform/graphics/haiku/
DSimpleFontDataHaiku.cpp108 GlyphMetrics SimpleFontData::platformMetricsForGlyph(Glyph glyph, GlyphMetricsMode) const in platformMetricsForGlyph()

12