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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontUtilsChromiumWin.cpp 259 WORD spaceGlyph = kUnsupportedGlyph;
260 GetGlyphIndices(dc, &space, 1, &spaceGlyph, GGI_MARK_NONEXISTING_GLYPHS);
262 return spaceGlyph;
270 , spaceGlyph(0)
277 WORD spaceGlyph;
397 WORD* spaceGlyph)
426 derived->spaceGlyph = getSpaceGlyph(derived->hfont);
434 if (kUnsupportedGlyph == derived->spaceGlyph)
435 derived->spaceGlyph = getSpaceGlyph(derived->hfont);
440 *spaceGlyph = derived->spaceGlyph
    [all...]
FontUtilsChromiumWin.h 81 bool getDerivedFontData(const UChar* family, int style, LOGFONT*, int* ascent, HFONT*, SCRIPT_CACHE**, WORD* spaceGlyph);
UniscribeHelperTextRun.cpp 47 font.primaryFont()->spaceGlyph())
100 WORD& spaceGlyph)
135 m_spaceGlyphs.append(simpleFontData->spaceGlyph());
142 spaceGlyph = m_spaceGlyphs[m_fontIndex - 1];
UniscribeHelperTextRun.h 70 virtual bool nextWinFontData(HFONT&, SCRIPT_CACHE*&, SCRIPT_FONTPROPERTIES*&, int& ascent, WORD& spaceGlyph);
GlyphPageTreeNodeChromiumWin.cpp 70 static bool initSpaceGlyph(HFONT font, HDC dc, Glyph* spaceGlyph)
73 return getGlyphIndices(font, dc, &space, 1, spaceGlyph, 0);
155 Glyph spaceGlyph = 0; // Glyph for a space. Lazily filled.
169 // If initSpaceGlyph fails, spaceGlyph stays 0 (= glyph is not present).
170 initSpaceGlyph(fontData->platformData().hfont(), dc, &spaceGlyph);
173 glyph = spaceGlyph;
UniscribeHelper.cpp 129 WORD spaceGlyph)
136 , m_spaceGlyph(spaceGlyph)
603 WORD spaceGlyph = m_spaceGlyph;
689 nextWinFontData(hfont, scriptCache, fontProperties, ascent, spaceGlyph)) {
709 &spaceGlyph);
723 &spaceGlyph);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
SimpleFontData.h 141 Glyph spaceGlyph() const { return m_spaceGlyph; }
142 void setSpaceGlyph(Glyph spaceGlyph) { m_spaceGlyph = spaceGlyph; }
144 void setZeroWidthSpaceGlyph(Glyph spaceGlyph) { m_zeroWidthSpaceGlyph = spaceGlyph; }
WidthIterator.cpp 185 if (m_run.applyWordRounding() && width == fontData->spaceWidth() && (fontData->pitch() == FixedPitch || glyph == fontData->spaceGlyph()))
228 glyphBuffer->add(fontData->spaceGlyph(), fontData, expansionAtThisOpportunity);
FontFastPath.cpp 517 Glyph spaceGlyph = markFontData->spaceGlyph();
526 markBuffer.add(glyphBuffer.glyphAt(i) ? markGlyph : spaceGlyph, markFontData, advance);
529 markBuffer.add(glyphBuffer.glyphAt(glyphBuffer.size() - 1) ? markGlyph : spaceGlyph, markFontData, 0);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontData.cpp 106 Glyph spaceGlyph = glyphPageZero->glyphDataForCharacter(' ').glyph;
107 fontData->setSpaceGlyph(spaceGlyph);
108 fontData->setSpaceWidth(fontData->widthForGlyph(spaceGlyph));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
ComplexTextController.cpp 617 CGGlyph glyph = treatAsSpace ? fontData->spaceGlyph() : glyphs[i];
624 glyph = fontData->spaceGlyph();
638 if (m_run.applyWordRounding() && roundedAdvanceWidth == roundedSpaceWidth && (fontData->pitch() == FixedPitch || glyph == fontData->spaceGlyph()))

Completed in 66 milliseconds