OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scaledfont
(Results
1 - 6
of
6
) 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
...]
RenderSVGInlineText.cpp
216
void RenderSVGInlineText::computeNewScaledFontForStyle(RenderObject* renderer, const RenderStyle* style, float& scalingFactor, Font&
scaledFont
)
225
scaledFont
= style->font();
238
scaledFont
= Font(fontDescription, 0, 0);
239
scaledFont
.update(document.styleEngine()->fontSelector());
SVGTextQuery.cpp
468
extent.setLocation(FloatPoint(fragment.x, fragment.y - queryData->textRenderer->
scaledFont
().fontMetrics().floatAscent() / scalingFactor));
Completed in 204 milliseconds