/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
GlyphBuffer.h | 73 m_glyphs.clear(); 77 GlyphBufferGlyph* glyphs(unsigned from) { return m_glyphs.data() + from; } 79 const GlyphBufferGlyph* glyphs(unsigned from) const { return m_glyphs.data() + from; } 86 return m_glyphs[index]; 97 m_glyphs.append(glyph); 110 m_glyphs.append(glyph); 134 GlyphBufferGlyph g = m_glyphs[index1]; 135 m_glyphs[index1] = m_glyphs[index2]; 136 m_glyphs[index2] = g 144 Vector<GlyphBufferGlyph, 2048> m_glyphs; member in class:WebCore::GlyphBuffer [all...] |
GlyphPage.h | 88 memcpy(page->m_glyphs, m_glyphs, sizeof(m_glyphs)); 93 page->m_perGlyphFontData[i] = m_glyphs[i] ? m_fontDataForAllGlyphs : 0; 112 Glyph glyph = m_glyphs[index]; 126 return m_glyphs[index]; 134 return m_glyphs[index] ? m_fontDataForAllGlyphs : 0; 145 m_glyphs[index] = glyph; 168 m_glyphs[i] = 0; 184 memset(m_glyphs, 0, sizeof(m_glyphs)) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/ |
HarfBuzzShaper.h | 88 uint16_t* glyphs() { return &m_glyphs[0]; } 105 Vector<uint16_t, 256> m_glyphs; member in class:WebCore::FINAL::HarfBuzzRun
|
HarfBuzzShaper.cpp | 228 , m_glyphs(rhs.m_glyphs) 243 m_glyphs.resize(m_numGlyphs); 252 m_glyphs = run.m_glyphs; 261 m_glyphs[index] = glyphId; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/ |
UniscribeHelper.cpp | 448 &shaping.m_glyphs[fromGlyph], 488 if (glyphIndex >= shaping.m_glyphs.size()) { 493 ASSERT(shaping.m_glyphs.size() == 0); 496 return shaping.m_glyphs[glyphIndex]; 758 shaping.m_glyphs.resize(numGlyphs); 767 // shaping.m_glyphs. Consequently, any bytes with value 0xCD that it [all...] |
UniscribeHelper.h | 255 return static_cast<int>(m_glyphs.size()); 286 Vector<WORD, cUniscribeHelperStackChars> m_glyphs; member in struct:WebCore::UniscribeHelper::Shaping
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/ |
ComplexTextController.h | 96 const CGGlyph* glyphs() const { return m_glyphs; } 117 const CGGlyph* m_glyphs; member in class:WebCore::ComplexTextController::ComplexTextRun
|
ComplexTextControllerCoreText.mm | 114 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/ |
UniscribeHelperTest.cpp | 125 EXPECT_EQ(0, uniscribe.m_shapes[0].m_glyphs.size());
|