Searched defs:stops (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DGradientAttributes.h44 const Vector<Gradient::ColorStop>& stops() const { return m_stops; } function in struct:WebCore::GradientAttributes
H A DSVGGradientElement.cpp150 Vector<Gradient::ColorStop> stops; local
171 stops.append(Gradient::ColorStop(offset, r, g, b, a));
174 return stops;
/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.h58 Vector<CSSGradientColorStop>& stops() { return m_stops; } function in class:WebCore::CSSGradientValue
/external/webkit/Source/WebCore/rendering/style/
H A DSVGRenderStyle.h203 if (!(stops->opacity == obj))
204 stops.access()->opacity = obj;
209 if (!(stops->color == obj))
210 stops.access()->color = obj;
304 float stopOpacity() const { return stops->opacity; }
305 Color stopColor() const { return stops->color; }
392 DataRef<StyleStopData> stops; member in class:WebCore::SVGRenderStyle
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp41 typedef void (*FuncGradientFillRectLinear)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, const Vector<Gradient::ColorStop>& stops);
42 typedef void (*FuncGradientFillRectRadial)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, float r0, float r1, const Vector<Gradient::ColorStop>& stops);
1311 const Vector<Gradient::ColorStop>& stops = gradient->getStops(); local
1312 if (stops.isEmpty())
1315 const Gradient::ColorStop& stop = stops.first();
1316 if (stops.size() == 1)
1319 const Gradient::ColorStop& lastStop = stops.last();
1404 const Vector<Gradient::ColorStop>& stops = gradient->getStops(); local
1405 if (stops.isEmpty())
1408 size_t numStops = stops
[all...]

Completed in 67 milliseconds