OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GlyphData
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/
GlyphPageTreeNode.h
53
struct
GlyphData
{
54
GlyphData
(Glyph g = 0, const SimpleFontData* f = 0)
63
// A GlyphPage contains a fixed-size set of
GlyphData
mappings for a contiguous
81
GlyphData
glyphDataForCharacter(UChar32 c) const
84
return
GlyphData
(m_glyphs[index], m_glyphFontData[index]);
87
GlyphData
glyphDataForIndex(unsigned index) const
90
return
GlyphData
(m_glyphs[index], m_glyphFontData[index]);
114
void setGlyphDataForIndex(unsigned index, const
GlyphData
&
glyphData
)
116
setGlyphDataForIndex(index,
glyphData
.glyph, glyphData.fontData)
[
all
...]
FontFastPath.cpp
43
GlyphData
Font::glyphDataForCharacter(UChar32 c, bool mirror, FontDataVariant variant) const
79
GlyphData
data = page->glyphDataForCharacter(c);
92
GlyphData
brokenIdeographData = brokenIdeographPage->glyphDataForCharacter(c);
106
GlyphData
verticalRightData = verticalRightPage->glyphDataForCharacter(c);
120
GlyphData
uprightData = uprightPage->glyphDataForCharacter(c);
152
GlyphData
data = page->glyphDataForCharacter(c);
163
GlyphData
data = variantPage->glyphDataForCharacter(c);
208
GlyphData
data = fallbackPage && fallbackPage->fontDataForCharacter(c) ? fallbackPage->glyphDataForCharacter(c) : characterFontData->missingGlyphData();
227
GlyphData
data = primaryFont()->missingGlyphData();
252
bool Font::getEmphasisMarkGlyphData(const AtomicString& mark,
GlyphData
& glyphData) cons
[
all
...]
Font.h
56
struct
GlyphData
;
142
GlyphData
glyphDataForCharacter(UChar32, bool mirror, FontDataVariant = AutoVariant) const;
181
bool getEmphasisMarkGlyphData(const AtomicString&,
GlyphData
&) const;
SimpleFontData.h
142
const
GlyphData
& missingGlyphData() const { return m_missingGlyphData; }
233
GlyphData
m_missingGlyphData;
WidthIterator.cpp
123
const
GlyphData
&
glyphData
= m_font->glyphDataForCharacter(c, rtl);
124
Glyph glyph =
glyphData
.glyph;
125
const SimpleFontData* fontData =
glyphData
.fontData;
151
const
GlyphData
& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
/external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp
193
GlyphData
glyphData
;
194
GlyphData
nextGlyphData;
223
glyphData
= nextGlyphData;
248
if (nextGlyphData.fontData !=
glyphData
.fontData || nextIsSmallCaps != isSmallCaps || !nextGlyphData.glyph != !
glyphData
.glyph) {
251
collectComplexTextRunsForCharacters((isSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart,
glyphData
.glyph ?
glyphData
.fontData : 0);
Completed in 44 milliseconds