OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_advances
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
GlyphBuffer.h
74
m_advances
.clear();
78
GlyphBufferAdvance* advances(unsigned from) { return
m_advances
.data() + from; }
80
const GlyphBufferAdvance* advances(unsigned from) const { return
m_advances
.data() + from; }
91
return
m_advances
[index].width();
101
m_advances
.append(advance);
103
m_advances
.append(FloatSize(width, 0));
111
m_advances
.append(advance);
123
GlyphBufferAdvance& lastAdvance =
m_advances
.last();
138
GlyphBufferAdvance s =
m_advances
[index1];
139
m_advances
[index1] = m_advances[index2]
145
Vector<GlyphBufferAdvance, 2048>
m_advances
;
member in class:WebCore::GlyphBuffer
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp
229
,
m_advances
(rhs.
m_advances
)
244
m_advances
.resize(m_numGlyphs);
253
m_advances
= run.
m_advances
;
262
m_advances
[index] = advance;
270
float currentAdvance =
m_advances
[0];
275
currentAdvance +=
m_advances
[++glyphIndex];
284
currentAdvance =
m_advances
[glyphIndex];
286
currentAdvance +=
m_advances
[++glyphIndex]
[
all
...]
HarfBuzzShaper.h
89
float* advances() { return &
m_advances
[0]; }
106
Vector<float, 256>
m_advances
;
member in class:WebCore::FINAL::HarfBuzzRun
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextControllerCoreText.mm
121
m_advances
= CTRunGetAdvancesPtr(ctRun);
122
if (!
m_advances
) {
125
m_advances
= m_advancesVector.data();
164
m_advances
= m_advancesVector.data();
ComplexTextController.h
97
const CGSize* advances() const { return
m_advances
; }
119
const CGSize*
m_advances
;
member in class:WebCore::ComplexTextController::ComplexTextRun
Completed in 159 milliseconds