OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scalingfactor
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetrics.cpp
47
float
scalingFactor
= textRenderer->
scalingFactor
();
48
ASSERT(
scalingFactor
);
53
// Calculate width/height using the scaled font, divide this result by the
scalingFactor
afterwards.
54
m_width = scaledFont.width(run, length, m_glyph.name) /
scalingFactor
;
55
m_height = scaledFont.fontMetrics().floatHeight() /
scalingFactor
;
109
float
scalingFactor
= text->
scalingFactor
();
110
ASSERT(
scalingFactor
);
112
m_width = width /
scalingFactor
;
[
all
...]
SVGInlineTextBox.cpp
89
float
scalingFactor
= textRenderer->
scalingFactor
();
90
ASSERT(
scalingFactor
);
104
return fragment.characterOffset - start() + textRenderer->scaledFont().offsetForPosition(textRun, position *
scalingFactor
, includePartialGlyphs);
124
float
scalingFactor
= textRenderer->
scalingFactor
();
125
ASSERT(
scalingFactor
);
130
if (
scalingFactor
!= 1)
131
textOrigin.scale(
scalingFactor
,
scalingFactor
);
[
all
...]
RenderSVGInlineText.cpp
217
void RenderSVGInlineText::computeNewScaledFontForStyle(RenderObject* renderer, const RenderStyle* style, float&
scalingFactor
, Font& scaledFont)
229
scalingFactor
= SVGRenderingContext::calculateScreenFontSizeScalingFactor(renderer);
230
if (
scalingFactor
== 1 || !
scalingFactor
) {
231
scalingFactor
= 1;
237
scalingFactor
= 1;
242
fontDescription.setComputedSize(FontSize::getComputedSizeFromSpecifiedSize(document,
scalingFactor
, fontDescription.isAbsoluteSize(), fontDescription.specifiedSize(), DoNotUseSmartMinimumForFontSize));
RenderSVGInlineText.h
39
float
scalingFactor
() const { return m_scalingFactor; }
42
static void computeNewScaledFontForStyle(RenderObject*, const RenderStyle*, float&
scalingFactor
, Font& scaledFont);
SVGInlineTextBox.h
70
bool acquirePaintingResource(GraphicsContext*&, float
scalingFactor
, RenderObject*, RenderStyle*);
73
bool prepareGraphicsContextForTextPainting(GraphicsContext*&, float
scalingFactor
, TextRun&, RenderStyle*);
RenderSVGResourceContainer.cpp
208
float
scalingFactor
= SVGRenderingContext::calculateScreenFontSizeScalingFactor(object);
209
if (
scalingFactor
== 1)
211
resourceTransform.scale(
scalingFactor
);
SVGTextQuery.cpp
466
float
scalingFactor
= queryData->textRenderer->
scalingFactor
();
467
ASSERT(
scalingFactor
);
469
extent.setLocation(FloatPoint(fragment.x, fragment.y - queryData->textRenderer->scaledFont().fontMetrics().floatAscent() /
scalingFactor
));
SVGTextRunRenderingContext.cpp
160
context->setStrokeThickness(strokeThickness * toRenderSVGInlineText(renderObject)->
scalingFactor
());
/external/chromium_org/third_party/WebKit/Source/core/page/
MemoryInfo.cpp
102
const float
scalingFactor
= exp(log(largestBucketSize / sizeOfNextBucket) / numberOfBuckets);
111
sizeOfNextBucket *=
scalingFactor
;
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/
results-template.html
196
this.values = function () { return values.map(function (value) { return metric.
scalingFactor
() * value; }); }
198
this.mean = function () { return metric.
scalingFactor
() * this.unscaledMean(); }
199
this.min = function () { return metric.
scalingFactor
() * Statistics.min(values); }
200
this.max = function () { return metric.
scalingFactor
() * Statistics.max(values); }
202
return metric.
scalingFactor
() * Statistics.confidenceIntervalDelta(0.95, values.length,
260
this.
scalingFactor
= function() {
/external/chromium_org/tools/telemetry/support/html_output/
results-template.html
153
this.values = function () { return values.map(function (value) { return metric.
scalingFactor
() * value; }); }
155
this.mean = function () { return metric.
scalingFactor
() * this.unscaledMean(); }
156
this.min = function () { return metric.
scalingFactor
() * Statistics.min(values); }
157
this.max = function () { return metric.
scalingFactor
() * Statistics.max(values); }
159
return metric.
scalingFactor
() * Statistics.confidenceIntervalDelta(0.95, values.length,
224
this.
scalingFactor
= function() {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
SyncSampleIntersectFinderImpl.java
276
final long
scalingFactor
= calculateTracktimesScalingFactor(m, track);
280
syncSampleTimes[currentSyncSampleIndex++] = currentDuration *
scalingFactor
;
Completed in 299 milliseconds