OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:scaledFont
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetrics.cpp
50
const Font&
scaledFont
= textRenderer->
scaledFont
();
54
m_width =
scaledFont
.width(run, length, m_glyph.name) / scalingFactor;
55
m_height =
scaledFont
.fontMetrics().floatHeight() / scalingFactor;
113
m_height = text->
scaledFont
().fontMetrics().floatHeight() / scalingFactor;
RenderSVGInlineText.h
40
const Font&
scaledFont
() const { return m_scaledFont; }
42
static void computeNewScaledFontForStyle(RenderObject*, const RenderStyle*, float& scalingFactor, Font&
scaledFont
);
SVGTextMetricsBuilder.cpp
102
const Font&
scaledFont
= text->
scaledFont
();
104
m_isComplexText =
scaledFont
.codePath(m_run) == Font::Complex;
109
m_simpleWidthIterator = adoptPtr(new WidthIterator(&
scaledFont
, m_run));
SVGInlineTextBox.cpp
105
return fragment.characterOffset - start() + textRenderer->
scaledFont
().offsetForPosition(textRun, position * scalingFactor, includePartialGlyphs);
128
const Font&
scaledFont
= textRenderer->
scaledFont
();
129
const FontMetrics& scaledFontMetrics =
scaledFont
.fontMetrics();
136
FloatRect selectionRect =
scaledFont
.selectionRectForText(constructTextRun(style, fragment), textOrigin, fragment.height * scalingFactor, startPosition, endPosition);
187
return textRenderer->
scaledFont
().pixelSize();
585
Font
scaledFont
;
586
RenderSVGInlineText::computeNewScaledFontForStyle(decorationRenderer, decorationStyle, scalingFactor,
scaledFont
);
590
float thickness = thicknessForDecoration(decoration,
scaledFont
);
597
const FontMetrics& scaledFontMetrics =
scaledFont
.fontMetrics()
[
all
...]
Completed in 3495 milliseconds