Home
last modified time | relevance | path

Searched refs:spaceGlyph (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
DGlyphPageTreeNodeChromiumWin.cpp53 static Glyph initSpaceGlyph(HDC dc, Glyph* spaceGlyph) in initSpaceGlyph() argument
55 if (*spaceGlyph) in initSpaceGlyph()
56 return *spaceGlyph; in initSpaceGlyph()
59 GetGlyphIndices(dc, &space, 1, spaceGlyph, 0); in initSpaceGlyph()
60 return *spaceGlyph; in initSpaceGlyph()
140 Glyph spaceGlyph = 0; // Glyph for a space. Lazily filled. in fillBMPGlyphs() local
152 glyph = initSpaceGlyph(dc, &spaceGlyph); in fillBMPGlyphs()
DFontUtilsChromiumWin.cpp258 WORD spaceGlyph = 0; in getSpaceGlyph() local
259 GetGlyphIndices(dc, &space, 1, &spaceGlyph, 0); in getSpaceGlyph()
262 return spaceGlyph; in getSpaceGlyph()
270 , spaceGlyph(0) in FontData()
277 WORD spaceGlyph; member
397 WORD* spaceGlyph) in getDerivedFontData() argument
426 derived->spaceGlyph = getSpaceGlyph(derived->hfont); in getDerivedFontData()
438 *spaceGlyph = derived->spaceGlyph; in getDerivedFontData()
DUniscribeHelper.cpp77 WORD spaceGlyph) in UniscribeHelper() argument
84 , m_spaceGlyph(spaceGlyph) in UniscribeHelper()
522 WORD spaceGlyph = m_spaceGlyph; in shape() local
610 &spaceGlyph); in shape()
624 &spaceGlyph); in shape()
653 shaping.m_spaceGlyph = spaceGlyph; in shape()
DFontUtilsChromiumWin.h81 …a(const UChar* family, int style, LOGFONT*, int* ascent, HFONT*, SCRIPT_CACHE**, WORD* spaceGlyph);
DUniscribeHelperTextRun.cpp47 font.primaryFont()->spaceGlyph()) in UniscribeHelperTextRun()
/external/webkit/Source/WebCore/platform/graphics/
DFontFastPath.cpp432 Glyph spaceGlyph = markFontData->spaceGlyph(); in drawEmphasisMarks() local
441 markBuffer.add(glyphBuffer.glyphAt(i) ? markGlyph : spaceGlyph, markFontData, advance); in drawEmphasisMarks()
444 …markBuffer.add(glyphBuffer.glyphAt(glyphBuffer.size() - 1) ? markGlyph : spaceGlyph, markFontData,… in drawEmphasisMarks()
DWidthIterator.cpp174 … glyphBuffer->add(fontData->spaceGlyph(), fontData, m_expansionPerOpportunity); in advance()
DSimpleFontData.h122 Glyph spaceGlyph() const { return m_spaceGlyph; } in spaceGlyph() function
/external/webkit/Source/WebCore/platform/graphics/mac/
DComplexTextController.cpp454 CGGlyph glyph = treatAsSpace ? fontData->spaceGlyph() : glyphs[i]; in adjustGlyphsAndAdvances()
462 glyph = fontData->spaceGlyph(); in adjustGlyphsAndAdvances()
/external/webkit/Source/WebCore/platform/graphics/win/
DUniscribeController.cpp279 glyphs[clusters[k]] = fontData->spaceGlyph(); in shapeAndPlaceItem()
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
DFontAndroid.cpp913 static Glyph spaceGlyph = m_font->glyphDataForCharacter(space, false).glyph; in setGlyphPositions() local
914 m_glyphs16[i] = spaceGlyph; in setGlyphPositions()
/external/webkit/Source/WebCore/
DChangeLog16927 (WebCore::FontMap::FontData::FontData): spaceGlyph member added.
16928 (WebCore::getDerivedFontData): spaceGlyph is retrieved as well.
16932 … (WebCore::UniscribeHelper::shape): spaceGlyph is obtained stored for a font tried for each item.
16939 …TextRun::UniscribeHelperTextRun): When calling UniscriberHelper, add a new argument for spaceGlyph.
DChangeLog-2009-06-162612 (WebCore::SimpleFontData::spaceGlyph):