Searched refs:m_stops (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGradient.cpp81 if (m_stops.isEmpty()) {
84 m_stopsSorted = m_stopsSorted && compareStops(m_stops.last(), stop);
87 m_stops.append(stop);
98 if (!m_stops.size())
101 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
106 for (size_t i = 0; i < m_stops.size(); i++) {
107 if (m_stops[i].color.hasAlpha())
211 size_t countUsed = totalStopsNeeded(m_stops.data(), m_stops
[all...]
H A DGradient.h135 Vector<ColorStop, 2> m_stops; member in class:blink::Gradient
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DGradientAttributes.h41 const Vector<Gradient::ColorStop>& stops() const { return m_stops; }
63 m_stops = value;
75 Vector<Gradient::ColorStop> m_stops; member in struct:blink::GradientAttributes
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.cpp97 if (m_stops.size())
98 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
117 for (unsigned i = 0; i < m_stops.size(); i++)
118 if (m_stops[i].m_color->colorIsDerivedFromElement()) {
119 m_stops[i].m_colorIsDerivedFromElement = true;
136 for (unsigned i = 0; i < result->m_stops.size(); i++)
137 result->m_stops[i].m_resolvedColor = textLinkColors.colorFromPrimitiveValue(result->m_stops[i].m_color.get(), currentColor);
147 for (unsigned i = 0; i < m_stops
[all...]
H A DCSSGradientValue.h90 void addStop(const CSSGradientColorStop& stop) { m_stops.append(stop); }
92 unsigned stopCount() const { return m_stops.size(); }
126 , m_stops(other.m_stops)
148 WillBeHeapVector<CSSGradientColorStop, 2> m_stops; member in class:blink::CSSGradientValue

Completed in 395 milliseconds