HomeSort by relevance Sort by last modified time
    Searched defs:stops (Results 1 - 6 of 6) sorted by null

  /external/webkit/WebCore/svg/
GradientAttributes.h 40 const Vector<SVGGradientStop>& stops() const { return m_stops; } function in struct:WebCore::GradientAttributes
SVGGradientElement.cpp 151 Vector<SVGGradientStop> stops; local
181 stops.append(makeGradientStop(stopOffset, makeRGBA(color.red(), color.green(), color.blue(), int(opacity * 255.))));
185 return stops;
SVGRadialGradientElement.cpp 157 Vector<SVGGradientStop> stops = attributes.stops(); local
159 for (unsigned i = 0; i < stops.size(); ++i) {
160 float offset = std::min(std::max(previousOffset, stops[i].first), 1.0f);
162 gradient->addColorStop(offset, stops[i].second);
167 if (attributes.stops().isEmpty())
175 radialGradient->setGradientStops(attributes.stops());
197 const Vector<SVGGradientStop>& stops(current->buildStops());
198 if (!stops.isEmpty())
199 attributes.setStops(stops);
    [all...]
  /external/webkit/WebCore/rendering/style/
SVGRenderStyle.h 91 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(float, stops, opacity, StopOpacity, stopOpacity, 1.0f)
92 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(Color, stops, color, StopColor, stopColor, Color(0, 0, 0))
178 DataRef<StyleStopData> stops; member in class:WebCore::SVGRenderStyle
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 40 typedef void (*FuncGradientFillRectLinear)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, const Vector<Gradient::ColorStop>& stops);
41 typedef void (*FuncGradientFillRectRadial)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, float r0, float r1, const Vector<Gradient::ColorStop>& stops);
1345 const Vector<Gradient::ColorStop>& stops = gradient->getStops(); local
1448 const Vector<Gradient::ColorStop>& stops = gradient->getStops(); local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java 788 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
2709 ArrayList<ActivityRecord> stops = null; local
    [all...]

Completed in 279 milliseconds