HomeSort by relevance Sort by last modified time
    Searched full:m_stops (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Gradient.cpp 78 m_stops.append(ColorStop(value, r, g, b, a));
86 m_stops.append(stop);
104 if (!m_stops.size())
107 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
112 for (size_t i = 0; i < m_stops.size(); i++) {
113 if (m_stops[i].alpha < 1)
222 size_t countUsed = totalStopsNeeded(m_stops.data(), m_stops.size());
224 ASSERT(countUsed >= m_stops.size())
    [all...]
Gradient.h 145 mutable Vector<ColorStop, 2> m_stops; member in class:WebCore::Gradient
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp 92 if (m_stops.size())
93 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
112 for (unsigned i = 0; i < m_stops.size(); i++)
113 if (m_stops[i].m_color->colorIsDerivedFromElement()) {
114 m_stops[i].m_colorIsDerivedFromElement = true;
131 for (unsigned i = 0; i < result->m_stops.size(); i++)
132 result->m_stops[i].m_resolvedColor = textLinkColors.colorFromPrimitiveValue(result->m_stops[i].m_color.get(), currentColor);
142 for (unsigned i = 0; i < m_stops.size(); i++)
    [all...]
CSSGradientValue.h 72 void addStop(const CSSGradientColorStop& stop) { m_stops.append(stop); }
74 unsigned stopCount() const { return m_stops.size(); }
106 , m_stops(other.m_stops)
128 Vector<CSSGradientColorStop, 2> m_stops; member in class:WebCore::CSSGradientValue
  /external/chromium_org/third_party/WebKit/Source/core/svg/
GradientAttributes.h 41 const Vector<Gradient::ColorStop>& stops() const { return m_stops; }
63 m_stops = value;
75 Vector<Gradient::ColorStop> m_stops; member in struct:WebCore::GradientAttributes

Completed in 136 milliseconds