OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:spaceGlyph
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/chromium/
GlyphPageTreeNodeChromiumWin.cpp
53
static Glyph initSpaceGlyph(HDC dc, Glyph*
spaceGlyph
)
55
if (*
spaceGlyph
)
56
return *
spaceGlyph
;
59
GetGlyphIndices(dc, &space, 1,
spaceGlyph
, 0);
60
return *
spaceGlyph
;
140
Glyph
spaceGlyph
= 0; // Glyph for a space. Lazily filled.
152
glyph = initSpaceGlyph(dc, &
spaceGlyph
);
FontUtilsChromiumWin.h
81
bool getDerivedFontData(const UChar* family, int style, LOGFONT*, int* ascent, HFONT*, SCRIPT_CACHE**, WORD*
spaceGlyph
);
FontUtilsChromiumWin.cpp
258
WORD
spaceGlyph
= 0;
259
GetGlyphIndices(dc, &space, 1, &
spaceGlyph
, 0);
262
return
spaceGlyph
;
270
,
spaceGlyph
(0)
277
WORD
spaceGlyph
;
397
WORD*
spaceGlyph
)
426
derived->
spaceGlyph
= getSpaceGlyph(derived->hfont);
438
*
spaceGlyph
= derived->
spaceGlyph
;
UniscribeHelperTextRun.cpp
47
font.primaryFont()->
spaceGlyph
())
UniscribeHelper.cpp
77
WORD
spaceGlyph
)
84
, m_spaceGlyph(
spaceGlyph
)
522
WORD
spaceGlyph
= m_spaceGlyph;
610
&
spaceGlyph
);
624
&
spaceGlyph
);
653
shaping.m_spaceGlyph =
spaceGlyph
;
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp
432
Glyph
spaceGlyph
= markFontData->
spaceGlyph
();
441
markBuffer.add(glyphBuffer.glyphAt(i) ? markGlyph :
spaceGlyph
, markFontData, advance);
444
markBuffer.add(glyphBuffer.glyphAt(glyphBuffer.size() - 1) ? markGlyph :
spaceGlyph
, markFontData, 0);
SimpleFontData.h
122
Glyph
spaceGlyph
() const { return m_spaceGlyph; }
WidthIterator.cpp
174
glyphBuffer->add(fontData->
spaceGlyph
(), fontData, m_expansionPerOpportunity);
/external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp
454
CGGlyph glyph = treatAsSpace ? fontData->
spaceGlyph
() : glyphs[i];
462
glyph = fontData->
spaceGlyph
();
/external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp
279
glyphs[clusters[k]] = fontData->
spaceGlyph
();
Completed in 371 milliseconds