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

  /external/webkit/Source/WebCore/platform/graphics/
GlyphBuffer.h 79 m_glyphs.clear();
86 GlyphBufferGlyph* glyphs(int from) { return m_glyphs.data() + from; }
88 const GlyphBufferGlyph* glyphs(int from) const { return m_glyphs.data() + from; }
99 GlyphBufferGlyph g = m_glyphs[index1];
100 m_glyphs[index1] = m_glyphs[index2];
101 m_glyphs[index2] = g;
117 return m_glyphs[index].index;
119 return m_glyphs[index];
151 m_glyphs.append(cairoGlyph)
206 Vector<GlyphBufferGlyph, 2048> m_glyphs; member in class:WebCore::GlyphBuffer
    [all...]
GlyphPageTreeNode.h 84 return GlyphData(m_glyphs[index], m_glyphFontData[index]);
90 return GlyphData(m_glyphs[index], m_glyphFontData[index]);
96 return m_glyphs[index];
111 m_glyphs[index] = g;
121 memcpy(m_glyphs, other.m_glyphs, sizeof(m_glyphs));
127 memset(m_glyphs, 0, sizeof(m_glyphs));
143 Glyph m_glyphs[size]
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp 369 &shaping.m_glyphs[fromGlyph],
382 &shaping.m_glyphs[fromGlyph],
421 if (glyphIndex >= shaping.m_glyphs.size()) {
426 ASSERT(shaping.m_glyphs.size() == 0);
429 return shaping.m_glyphs[glyphIndex];
541 shaping.m_glyphs.resize(numGlyphs);
547 // shaping.m_glyphs. Consequently, any bytes with value 0xCD that it
557 // &shaping.m_glyphs[0],
558 // sizeof(shaping.m_glyphs[0] * generatedGlyphs);
560 ZeroMemory(&shaping.m_glyphs[0]
    [all...]
UniscribeHelper.h 241 return static_cast<int>(m_glyphs.size());
272 Vector<WORD, UNISCRIBE_HELPER_STACK_CHARS> m_glyphs; member in struct:WebCore::UniscribeHelper::Shaping
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextControllerCoreText.cpp 61 m_glyphs = CTRunGetGlyphsPtr(ctRun);
62 if (!m_glyphs) {
65 m_glyphs = m_glyphsVector.data();
101 m_glyphs = m_glyphsVector.data();
ComplexTextController.h 96 const CGGlyph* glyphs() const { return m_glyphs; }
134 const CGGlyph* m_glyphs; member in class:WebCore::ComplexTextController::ComplexTextRun
ComplexTextControllerATSUI.cpp 91 complexTextRun->m_glyphs = complexTextRun->m_glyphsVector.data();
245 m_glyphs = m_glyphsVector.data();
  /external/webkit/Source/WebKit/chromium/tests/
UniscribeHelperTest.cpp 123 EXPECT_EQ(0, uniscribe.m_shapes[0].m_glyphs.size());

Completed in 278 milliseconds