Searched refs:specifiedSize (Results 1 – 15 of 15) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | FontSize.cpp | 38 …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()
|
D | FontSize.h | 38 …iedSize(const Document*, float zoomFactor, bool isAbsoluteSize, float specifiedSize, ESmartMinimum…
|
D | CSSPrimitiveValue.cpp | 568 …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()
|
D | CSSComputedStyleDeclaration.cpp | 1501 …return zoomAdjustedPixelValue(floatValueForLength(length, style.fontDescription().specifiedSize(),… in valueForLineHeight()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | FontBuilder.cpp | 132 …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()
|
D | FontBuilder.h | 101 …float getComputedSizeFromSpecifiedSize(FontDescription&, float effectiveZoom, float specifiedSize);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | TextAutosizer.cpp | 301 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()
|
D | TextAutosizer.h | 52 static float computeAutosizedFontSize(float specifiedSize, float multiplier);
|
D | RenderListBox.cpp | 238 int specifiedSize = selectElement()->size(); in size() local 239 if (specifiedSize > 1) in size() 240 return max(minSize, specifiedSize); in size()
|
D | RenderEmbeddedObject.cpp | 176 fontDescription.setComputedSize(fontDescription.specifiedSize()); in getReplacementTextGeometry()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebFontDescription.cpp | 45 size = desc.specifiedSize(); in WebFontDescription()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGInlineText.cpp | 236 …ent, scalingFactor, fontDescription.isAbsoluteSize(), fontDescription.specifiedSize(), DoNotUseSma… in computeNewScaledFontForStyle()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | FontDescription.h | 109 float specifiedSize() const { return m_specifiedSize; } in specifiedSize() function
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | RenderStyle.cpp | 1187 float RenderStyle::specifiedFontSize() const { return fontDescription().specifiedSize(); } in specifiedFontSize()
|
D | RenderStyle.h | 1072 setFontSize(fontDescription().specifiedSize()); in setTextAutosizingMultiplier()
|