HomeSort by relevance Sort by last modified time
    Searched refs:rootStyle (Results 1 - 8 of 8) sorted by null

  /external/webkit/WebCore/css/
Media.cpp 65 RefPtr<RenderStyle> rootStyle = styleSelector->styleForElement(documentElement, 0 /*defaultParent*/, false /*allowSharing*/, true /*resolveForRootDefault*/);
73 MediaQueryEvaluator screenEval(type(), m_frame, rootStyle.get());
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 = false);
126 float computeLengthFloat(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier, bool computingFontSize = false);
127 double computeLengthDouble(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = 1.0, bool computingFontSize = false);
MediaQueryEvaluator.cpp 309 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
310 return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.height()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
321 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
322 return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.width()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
332 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
335 return value->isPrimitiveValue() && compareValue(view->layoutHeight(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
343 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
346 return value->isPrimitiveValue() && compareValue(view->layoutWidth(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
CSSStyleSelector.h 159 static bool createTransformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
CSSStyleSelector.cpp     [all...]
  /external/webkit/WebCore/svg/graphics/
SVGPaintServer.h 91 DashArray dashArrayFromRenderingStyle(const RenderStyle* style, RenderStyle* rootStyle);
SVGPaintServer.cpp 210 DashArray dashArrayFromRenderingStyle(const RenderStyle* style, RenderStyle* rootStyle)
223 array.append((float) dash->computeLengthFloat(const_cast<RenderStyle*>(style), rootStyle));
  /external/webkit/WebCore/rendering/
MediaControlElements.cpp 69 RefPtr<RenderStyle> rootStyle = RenderStyle::create();
70 rootStyle->inheritFrom(mediaElement->renderer()->style());
71 rootStyle->setDisplay(BLOCK);
72 rootStyle->setPosition(RelativePosition);
74 renderer->setStyle(rootStyle.release());

Completed in 194 milliseconds