HomeSort by relevance Sort by last modified time
    Searched refs:stops (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 133 // The back end already sorted the stops.
140 Vector<GradientStop> stops(numStops);
155 stops[i].color = renderer->document()->styleSelector()->getColorFromPrimitiveValue(stop.m_color.get());
160 stops[i].offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
167 stops[i].offset = (gradientLength > 0) ? length / gradientLength : 0;
170 stops[i].offset = 0;
172 stops[i].specified = true;
177 stops[i].offset = 0;
178 stops[i].specified = true;
180 stops[i].offset = 1
    [all...]
CSSGradientValue.h 58 Vector<CSSGradientColorStop>& stops() { return m_stops; } function in class:WebCore::CSSGradientValue
94 // Stops
CSSParser.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.cpp 50 stops = defaultStyle->stops;
66 stops.init();
79 stops = other.stops;
98 && stops == other.stops
197 // If gradient stops change, we just need to repaint. Style updates are already handled through RenderSVGGradientSTop.
198 if (stops != other->stops)
    [all...]
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
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceLinearGradient.cpp 60 // Add stops
61 addStops(gradientData, m_attributes.stops());
RenderSVGResourceRadialGradient.cpp 65 // Add stops
66 addStops(gradientData, m_attributes.stops());
RenderSVGResourceGradient.cpp 270 void RenderSVGResourceGradient::addStops(GradientData* gradientData, const Vector<Gradient::ColorStop>& stops) const
274 const Vector<Gradient::ColorStop>::const_iterator end = stops.end();
275 for (Vector<Gradient::ColorStop>::const_iterator it = stops.begin(); it != end; ++it)
  /external/webkit/Source/WebCore/svg/
GradientAttributes.h 44 const Vector<Gradient::ColorStop>& stops() const { return m_stops; } function in struct:WebCore::GradientAttributes
SVGGradientElement.cpp 150 Vector<Gradient::ColorStop> stops; local
171 stops.append(Gradient::ColorStop(offset, r, g, b, a));
174 return stops;
SVGLinearGradientElement.cpp 160 const Vector<Gradient::ColorStop>& stops(current->buildStops());
161 if (!stops.isEmpty())
162 attributes.setStops(stops);
SVGRadialGradientElement.cpp 171 const Vector<Gradient::ColorStop>& stops(current->buildStops());
172 if (!stops.isEmpty())
173 attributes.setStops(stops);
  /external/v8/test/mjsunit/
debug-constructor.js 63 // Break point stops on "new c()" and steps into c.
70 // Break point stops on "x = 1" and steps to "new c()" and then into c.
  /frameworks/base/core/java/android/text/
Layout.java     [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/LayoutTests/dom/xhtml/level3/core/
handleerror01.js 109 with an error handler that stops processing. Only one of the
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java 3478 ArrayList<ActivityRecord> stops = null; local
    [all...]
  /external/v8/test/mjsunit/compiler/
optimized-for-in.js 32 // stops following insertion order.
  /external/chromium/chrome/browser/resources/
print_preview.js 587 * the user stops typing in order to update the print preview.
603 * When the user stops typing in the page range textfield or clicks on the
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
base.js 236 // This function starts running a suite, but stops between each
  /external/v8/benchmarks/
base.js 231 // This function starts running a suite, but stops between each
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 359 * ANTLR stops at the end of a rule.
  /external/bison/djgpp/
config.bat 339 Rem Set HOME to a sane default so configure stops complaining.
  /external/chromium/chrome/browser/resources/net_internals/
main.js 665 * badProxies[i].bad_until: The time when the proxy stops being considered
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]

Completed in 456 milliseconds

1 2