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

  /external/webkit/Source/WebCore/svg/
SVGGradientElement.cpp 150 Vector<Gradient::ColorStop> stops; local
171 stops.append(Gradient::ColorStop(offset, r, g, b, a));
174 return stops;
GradientAttributes.h 44 const Vector<Gradient::ColorStop>& stops() const { return m_stops; } function in struct:WebCore::GradientAttributes
  /external/webkit/Source/WebCore/css/
CSSGradientValue.h 58 Vector<CSSGradientColorStop>& stops() { return m_stops; } function in class:WebCore::CSSGradientValue
94 // Stops
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 528 SkScalar* stops = stopsArray; local
530 int colorCount = RandomGradientParams(random, colors, &stops, &tm);
532 colors, stops, colorCount,
SkRadialGradient.cpp 549 SkScalar* stops = stopsArray; local
551 int colorCount = RandomGradientParams(random, colors, &stops, &tm);
553 colors, stops, colorCount,
SkTwoPointConicalGradient.cpp 445 SkScalar* stops = stopsArray; local
447 int colorCount = RandomGradientParams(random, colors, &stops, &tm);
450 colors, stops, colorCount,
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 161 // Buffers for storing current X and Y stops. See the computeAxisStops method for more details.
323 // Computes axis stops (in terms of numerical value and position on screen)
338 // arrays and only reallocate if the number of stops grows.
354 mAxisXPositionsBuffer[i] = getDrawX(mXStopsBuffer.stops[i]);
357 mAxisYPositionsBuffer[i] = getDrawY(mYStopsBuffer.stops[i]);
383 labelLength = formatFloat(mLabelBuffer, mXStopsBuffer.stops[i], mXStopsBuffer.decimals);
396 labelLength = formatFloat(mLabelBuffer, mYStopsBuffer.stops[i], mYStopsBuffer.decimals);
460 * of stops between these boundaries.
464 * @param steps The ideal number of stops to create. This should be based on available screen
465 * space; the more space there is, the more stops should be shown
1181 float[] stops = new float[]{}; field in class:InteractiveLineGraphView.AxisStops
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 41 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
1404 const Vector<Gradient::ColorStop>& stops = gradient->getStops(); local
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 203 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
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java 3510 ArrayList<ActivityRecord> stops = null; local
    [all...]

Completed in 221 milliseconds