OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textMetricsValues
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributes.h
59
Vector<SVGTextMetrics>&
textMetricsValues
() { return m_textMetricsValues; }
SVGTextMetricsBuilder.cpp
136
Vector<SVGTextMetrics>*
textMetricsValues
= &attributes->
textMetricsValues
();
141
textMetricsValues
->clear();
152
textMetricsValues
->append(SVGTextMetrics(SVGTextMetrics::SkippedSpaceMetrics));
164
textMetricsValues
->append(m_currentMetrics);
SVGTextLayoutEngine.cpp
114
void SVGTextLayoutEngine::recordTextFragment(SVGInlineTextBox* textBox, Vector<SVGTextMetrics>&
textMetricsValues
)
123
SVGTextMetrics& lastCharacterMetrics =
textMetricsValues
.at(m_visualMetricsListOffset - 1);
132
length +=
textMetricsValues
.at(i).height();
136
length +=
textMetricsValues
.at(i).width();
357
Vector<SVGTextMetrics>*
textMetricsValues
= &logicalAttributes->
textMetricsValues
();
358
unsigned textMetricsSize =
textMetricsValues
->size();
364
textMetricsValues
= &logicalAttributes->
textMetricsValues
();
365
textMetricsSize =
textMetricsValues
->size()
[
all
...]
SVGTextQuery.cpp
159
Vector<SVGTextMetrics>&
textMetricsValues
= layoutAttributes->
textMetricsValues
();
164
unsigned textMetricsSize =
textMetricsValues
.size();
174
SVGTextMetrics& metrics =
textMetricsValues
[textMetricsOffset];
Completed in 431 milliseconds