Home
last modified time | relevance | path

Searched refs:rootStyle (Results 1 – 9 of 9) sorted by relevance

/external/webkit/WebCore/css/
DCSSPrimitiveValue.h119 int computeLengthInt(RenderStyle* currStyle, RenderStyle* rootStyle);
120 int computeLengthInt(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
121 int computeLengthIntForLength(RenderStyle* currStyle, RenderStyle* rootStyle);
122 … int computeLengthIntForLength(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
123 short computeLengthShort(RenderStyle* currStyle, RenderStyle* rootStyle);
124 short computeLengthShort(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
125 …float computeLengthFloat(RenderStyle* currStyle, RenderStyle* rootStyle, bool computingFontSize = …
126 …float computeLengthFloat(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier, bool c…
127 …double computeLengthDouble(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = …
DCSSPrimitiveValue.cpp322 int CSSPrimitiveValue::computeLengthInt(RenderStyle* style, RenderStyle* rootStyle) in computeLengthInt() argument
324 double result = computeLengthDouble(style, rootStyle); in computeLengthInt()
335 int CSSPrimitiveValue::computeLengthInt(RenderStyle* style, RenderStyle* rootStyle, double multipli… in computeLengthInt() argument
337 double result = computeLengthDouble(style, rootStyle, multiplier); in computeLengthInt()
352 int CSSPrimitiveValue::computeLengthIntForLength(RenderStyle* style, RenderStyle* rootStyle) in computeLengthIntForLength() argument
354 double result = computeLengthDouble(style, rootStyle); in computeLengthIntForLength()
366 int CSSPrimitiveValue::computeLengthIntForLength(RenderStyle* style, RenderStyle* rootStyle, double… in computeLengthIntForLength() argument
368 double result = computeLengthDouble(style, rootStyle, multiplier); in computeLengthIntForLength()
379 short CSSPrimitiveValue::computeLengthShort(RenderStyle* style, RenderStyle* rootStyle) in computeLengthShort() argument
381 double result = computeLengthDouble(style, rootStyle); in computeLengthShort()
[all …]
DMediaQueryEvaluator.cpp309 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle(); in device_heightMediaFeatureEval() local
310 …int>(sg.height()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op); in device_heightMediaFeatureEval()
321 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle(); in device_widthMediaFeatureEval() local
322 …<int>(sg.width()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op); in device_widthMediaFeatureEval()
332 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle(); in heightMediaFeatureEval() local
335 …w->layoutHeight(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op); in heightMediaFeatureEval()
343 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle(); in widthMediaFeatureEval() local
346 …ew->layoutWidth(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op); in widthMediaFeatureEval()
DMedia.cpp65 …RefPtr<RenderStyle> rootStyle = styleSelector->styleForElement(documentElement, 0 /*defaultParent*… in matchMedium() local
73 MediaQueryEvaluator screenEval(type(), m_frame, rootStyle.get()); in matchMedium()
DCSSStyleSelector.h159 …ansformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperat…
DCSSStyleSelector.cpp2865 …gth(CSSPrimitiveValue* primitiveValue, RenderStyle* style, RenderStyle* rootStyle, double multipli… in convertToLength() argument
2881 … l = Length(primitiveValue->computeLengthIntForLength(style, rootStyle, multiplier), Fixed); in convertToLength()
6127 …TransformOperations(CSSValue* inValue, RenderStyle* style, RenderStyle* rootStyle, TransformOperat… in createTransformOperations() argument
6194 ty = convertToLength(firstValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
6196 tx = convertToLength(firstValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
6200 … ty = convertToLength(secondValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
6218 tz = convertToLength(firstValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
6220 ty = convertToLength(firstValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
6222 tx = convertToLength(firstValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
6226 tz = convertToLength(thirdValue, style, rootStyle, zoomFactor, &ok); in createTransformOperations()
[all …]
/external/webkit/WebCore/rendering/
DMediaControlElements.cpp69 RefPtr<RenderStyle> rootStyle = RenderStyle::create(); in MediaControlShadowRootElement() local
70 rootStyle->inheritFrom(mediaElement->renderer()->style()); in MediaControlShadowRootElement()
71 rootStyle->setDisplay(BLOCK); in MediaControlShadowRootElement()
72 rootStyle->setPosition(RelativePosition); in MediaControlShadowRootElement()
74 renderer->setStyle(rootStyle.release()); in MediaControlShadowRootElement()
/external/webkit/WebCore/svg/graphics/
DSVGPaintServer.cpp210 DashArray dashArrayFromRenderingStyle(const RenderStyle* style, RenderStyle* rootStyle) in dashArrayFromRenderingStyle() argument
223 … array.append((float) dash->computeLengthFloat(const_cast<RenderStyle*>(style), rootStyle)); in dashArrayFromRenderingStyle()
DSVGPaintServer.h91 DashArray dashArrayFromRenderingStyle(const RenderStyle* style, RenderStyle* rootStyle);