Home
last modified time | relevance | path

Searched refs:specifiedSize (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DFontSize.cpp38 …onst Document* document, float zoomFactor, bool isAbsoluteSize, float specifiedSize, ESmartMinimum… in getComputedSizeFromSpecifiedSize() argument
44 if (fabsf(specifiedSize) < std::numeric_limits<float>::epsilon()) in getComputedSizeFromSpecifiedSize()
63 float zoomedSize = specifiedSize * zoomFactor; in getComputedSizeFromSpecifiedSize()
73 …if (useSmartMinimumForFontSize && zoomedSize < minLogicalSize && (specifiedSize >= minLogicalSize … in getComputedSizeFromSpecifiedSize()
DFontSize.h38 …iedSize(const Document*, float zoomFactor, bool isAbsoluteSize, float specifiedSize, ESmartMinimum…
DCSSPrimitiveValue.cpp568 …factor = computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().com… in computeLengthDouble()
577 …factor = (computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().co… in computeLengthDouble()
580 …factor = computingFontSize ? rootStyle.fontDescription().specifiedSize() : rootStyle.fontDescripti… in computeLengthDouble()
DCSSComputedStyleDeclaration.cpp1501 …return zoomAdjustedPixelValue(floatValueForLength(length, style.fontDescription().specifiedSize(),… in valueForLineHeight()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DFontBuilder.cpp132 …getComputedSizeFromSpecifiedSize(fontDescription, effectiveZoom, fontDescription.specifiedSize())); in fromSystemFont()
259 float size = parentFontDescription.specifiedSize(); in setFontSizeInherit()
297 parentSize = parentStyle->fontDescription().specifiedSize(); in setFontSizeValue()
514 …edSizeFromSpecifiedSize(FontDescription& fontDescription, float effectiveZoom, float specifiedSize) in getComputedSizeFromSpecifiedSize() argument
524 …utedSizeFromSpecifiedSize(m_document, zoomFactor, fontDescription.isAbsoluteSize(), specifiedSize); in getComputedSizeFromSpecifiedSize()
610 scope.fontDescription().specifiedSize() / fixedScaleFactor : in checkForGenericFamilyChange()
611 scope.fontDescription().specifiedSize() * fixedScaleFactor; in checkForGenericFamilyChange()
624 … setSize(scope.fontDescription(), style->effectiveZoom(), scope.fontDescription().specifiedSize()); in checkForZoomChange()
DFontBuilder.h101 …float getComputedSizeFromSpecifiedSize(FontDescription&, float effectiveZoom, float specifiedSize);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextAutosizer.cpp301 float TextAutosizer::computeAutosizedFontSize(float specifiedSize, float multiplier) in computeAutosizedFontSize() argument
319 if (specifiedSize <= pleasantSize) in computeAutosizedFontSize()
320 computedSize = multiplier * specifiedSize; in computeAutosizedFontSize()
322 …computedSize = multiplier * pleasantSize + gradientAfterPleasantSize * (specifiedSize - pleasantSi… in computeAutosizedFontSize()
323 if (computedSize < specifiedSize) in computeAutosizedFontSize()
324 computedSize = specifiedSize; in computeAutosizedFontSize()
DTextAutosizer.h52 static float computeAutosizedFontSize(float specifiedSize, float multiplier);
DRenderListBox.cpp238 int specifiedSize = selectElement()->size(); in size() local
239 if (specifiedSize > 1) in size()
240 return max(minSize, specifiedSize); in size()
DRenderEmbeddedObject.cpp176 fontDescription.setComputedSize(fontDescription.specifiedSize()); in getReplacementTextGeometry()
/external/chromium_org/third_party/WebKit/Source/web/
DWebFontDescription.cpp45 size = desc.specifiedSize(); in WebFontDescription()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGInlineText.cpp236 …ent, scalingFactor, fontDescription.isAbsoluteSize(), fontDescription.specifiedSize(), DoNotUseSma… in computeNewScaledFontForStyle()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontDescription.h109 float specifiedSize() const { return m_specifiedSize; } in specifiedSize() function
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.cpp1187 float RenderStyle::specifiedFontSize() const { return fontDescription().specifiedSize(); } in specifiedFontSize()
DRenderStyle.h1072 setFontSize(fontDescription().specifiedSize()); in setTextAutosizingMultiplier()