OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rootStyle
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/css/
MediaQueryEvaluator.cpp
313
RenderStyle*
rootStyle
= frame->document()->documentElement()->renderStyle();
314
return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.height()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style,
rootStyle
), op);
325
RenderStyle*
rootStyle
= frame->document()->documentElement()->renderStyle();
326
return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.width()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style,
rootStyle
), op);
336
RenderStyle*
rootStyle
= frame->document()->documentElement()->renderStyle();
339
return value->isPrimitiveValue() && compareValue(view->layoutHeight(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style,
rootStyle
), op);
347
RenderStyle*
rootStyle
= frame->document()->documentElement()->renderStyle();
350
return value->isPrimitiveValue() && compareValue(view->layoutWidth(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style,
rootStyle
), op);
CSSGradientValue.cpp
112
void CSSGradientValue::addStops(Gradient* gradient, RenderObject* renderer, RenderStyle*
rootStyle
, float maxLengthForRepeat)
162
float length = stop.m_position->computeLengthFloat(style,
rootStyle
, style->effectiveZoom());
365
static float positionFromValue(CSSPrimitiveValue* value, RenderStyle* style, RenderStyle*
rootStyle
, const IntSize& size, bool isHorizontal)
393
return value->computeLengthFloat(style,
rootStyle
, zoomFactor);
397
FloatPoint CSSGradientValue::computeEndPoint(CSSPrimitiveValue* first, CSSPrimitiveValue* second, RenderStyle* style, RenderStyle*
rootStyle
, const IntSize& size)
402
result.setX(positionFromValue(first, style,
rootStyle
, size, true));
405
result.setY(positionFromValue(second, style,
rootStyle
, size, false));
533
RenderStyle*
rootStyle
= renderer->document()->documentElement()->renderStyle();
541
firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), renderer->style(),
rootStyle
, size);
544
secondPoint = computeEndPoint(m_secondX.get(), m_secondY.get(), renderer->style(),
rootStyle
, size)
[
all
...]
Completed in 114 milliseconds