/external/webkit/WebCore/css/ |
D | CSSPrimitiveValue.h | 119 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 = …
|
D | CSSPrimitiveValue.cpp | 322 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 …]
|
D | MediaQueryEvaluator.cpp | 309 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()
|
D | Media.cpp | 65 …RefPtr<RenderStyle> rootStyle = styleSelector->styleForElement(documentElement, 0 /*defaultParent*… in matchMedium() local 73 MediaQueryEvaluator screenEval(type(), m_frame, rootStyle.get()); in matchMedium()
|
D | CSSStyleSelector.h | 159 …ansformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperat…
|
D | CSSStyleSelector.cpp | 2865 …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/ |
D | MediaControlElements.cpp | 69 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/ |
D | SVGPaintServer.cpp | 210 DashArray dashArrayFromRenderingStyle(const RenderStyle* style, RenderStyle* rootStyle) in dashArrayFromRenderingStyle() argument 223 … array.append((float) dash->computeLengthFloat(const_cast<RenderStyle*>(style), rootStyle)); in dashArrayFromRenderingStyle()
|
D | SVGPaintServer.h | 91 DashArray dashArrayFromRenderingStyle(const RenderStyle* style, RenderStyle* rootStyle);
|