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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
GlyphBuffer.h 55 m_advances.clear();
60 const FloatSize* advances(unsigned from) const { return m_advances.data() + from; }
71 return m_advances[index];
78 m_advances.append(FloatSize(width, 0));
85 m_advances.append(advance);
94 m_advances.reverse();
99 m_advances[index].setWidth(newWidth);
105 FloatSize& lastAdvance = m_advances.last();
112 Vector<FloatSize, 2048> m_advances; member in class:blink::GlyphBuffer
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.h 92 float* advances() { return &m_advances[0]; }
117 Vector<float, 256> m_advances; member in class:blink::FINAL::HarfBuzzRun
HarfBuzzShaper.cpp 257 , m_advances(rhs.m_advances)
272 m_advances.resize(m_numGlyphs);
280 m_advances[index] = advance;
288 float currentAdvance = m_advances[0];
293 currentAdvance += m_advances[++glyphIndex];
303 currentAdvance = m_advances[glyphIndex];
305 currentAdvance += m_advances[++glyphIndex];
324 position += m_advances[glyphIndex];
330 position += m_advances[glyphIndex]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.h 96 const CGSize* advances() const { return m_advances; }
118 const CGSize* m_advances; member in class:blink::ComplexTextController::ComplexTextRun
ComplexTextControllerCoreText.mm 121 m_advances = CTRunGetAdvancesPtr(ctRun);
122 if (!m_advances) {
125 m_advances = m_advancesVector.data();
164 m_advances = m_advancesVector.data();

Completed in 139 milliseconds