Home
last modified time | relevance | path

Searched refs:m_glyphs (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DGlyphBuffer.h73 m_glyphs.clear(); in clear()
77 GlyphBufferGlyph* glyphs(unsigned from) { return m_glyphs.data() + from; } in glyphs()
79 const GlyphBufferGlyph* glyphs(unsigned from) const { return m_glyphs.data() + from; } in glyphs()
86 return m_glyphs[index]; in glyphAt()
97 m_glyphs.append(glyph); in add()
110 m_glyphs.append(glyph); in add()
134 GlyphBufferGlyph g = m_glyphs[index1]; in swap()
135 m_glyphs[index1] = m_glyphs[index2]; in swap()
136 m_glyphs[index2] = g; in swap()
144 Vector<GlyphBufferGlyph, 2048> m_glyphs; variable
DGlyphPage.h88 memcpy(page->m_glyphs, m_glyphs, sizeof(m_glyphs)); in createCopiedSystemFallbackPage()
93 page->m_perGlyphFontData[i] = m_glyphs[i] ? m_fontDataForAllGlyphs : 0; in createCopiedSystemFallbackPage()
112 Glyph glyph = m_glyphs[index]; in glyphDataForIndex()
126 return m_glyphs[index]; in glyphAt()
134 return m_glyphs[index] ? m_fontDataForAllGlyphs : 0; in fontDataForCharacter()
145 m_glyphs[index] = glyph; in setGlyphDataForIndex()
168 m_glyphs[i] = 0; in removeFontDataFromSystemFallbackPage()
184 memset(m_glyphs, 0, sizeof(m_glyphs)); in m_fontDataForAllGlyphs()
193 Glyph m_glyphs[size]; variable
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
DUniscribeHelper.cpp448 &shaping.m_glyphs[fromGlyph], in draw()
488 if (glyphIndex >= shaping.m_glyphs.size()) { in firstGlyphForCharacter()
493 ASSERT(shaping.m_glyphs.size() == 0); in firstGlyphForCharacter()
496 return shaping.m_glyphs[glyphIndex]; in firstGlyphForCharacter()
758 shaping.m_glyphs.resize(numGlyphs); in shape()
780 ZeroMemory(&shaping.m_glyphs[0], in shape()
781 sizeof(shaping.m_glyphs[0]) * shaping.m_glyphs.size()); in shape()
797 &shaping.m_glyphs[0], &glyphProps[0], in shape()
809 &shaping.m_glyphs[0], &shaping.m_logs[0], in shape()
901 shaping.m_glyphs.resize(generatedGlyphs); in shape()
[all …]
DUniscribeHelper.h255 return static_cast<int>(m_glyphs.size()); in glyphLength()
286 Vector<WORD, cUniscribeHelperStackChars> m_glyphs; member
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
DHarfBuzzShaper.h88 uint16_t* glyphs() { return &m_glyphs[0]; } in glyphs()
105 Vector<uint16_t, 256> m_glyphs; variable
DHarfBuzzShaper.cpp228 , m_glyphs(rhs.m_glyphs) in HarfBuzzRun()
243 m_glyphs.resize(m_numGlyphs); in applyShapeResult()
252 m_glyphs = run.m_glyphs; in copyShapeResultAndGlyphPositions()
261 m_glyphs[index] = glyphId; in setGlyphAndPositions()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DComplexTextController.h96 const CGGlyph* glyphs() const { return m_glyphs; } in glyphs()
117 const CGGlyph* m_glyphs; variable
DComplexTextControllerCoreText.mm114 m_glyphs = CTRunGetGlyphsPtr(ctRun);
115 if (!m_glyphs) {
118 m_glyphs = m_glyphsVector.data();
162 m_glyphs = m_glyphsVector.data();
/external/chromium_org/third_party/WebKit/Source/web/tests/
DUniscribeHelperTest.cpp125 EXPECT_EQ(0, uniscribe.m_shapes[0].m_glyphs.size()); in TEST_F()