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

  /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
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Gradient.cpp 106 m_stops.append(ColorStop(value, r, g, b, a));
116 m_stops.append(stop);
136 if (!m_stops.size())
139 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
146 for (size_t i = 0; i < m_stops.size(); i++) {
147 if (m_stops[i].alpha < 1)
225 unsigned stopHash = StringHasher::hashMemory(m_stops.data(), m_stops.size() * sizeof(ColorStop));
304 size_t countUsed = totalStopsNeeded(m_stops.data(), m_stops.size())
    [all...]
Gradient.h 153 mutable Vector<ColorStop, 2> m_stops; member in class:WebCore::Gradient
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp 91 if (m_stops.size())
92 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
111 for (unsigned i = 0; i < m_stops.size(); i++)
112 if (m_stops[i].m_color->colorIsDerivedFromElement()) {
113 m_stops[i].m_colorIsDerivedFromElement = true;
130 for (unsigned i = 0; i < result->m_stops.size(); i++)
131 result->m_stops[i].m_resolvedColor = textLinkColors.colorFromPrimitiveValue(result->m_stops[i].m_color.get());
143 for (unsigned i = 0; i < m_stops.size(); i++)
    [all...]
CSSGradientValue.h 73 void addStop(const CSSGradientColorStop& stop) { m_stops.append(stop); }
75 unsigned stopCount() const { return m_stops.size(); }
110 , m_stops(other.m_stops)
132 Vector<CSSGradientColorStop, 2> m_stops; member in class:WebCore::CSSGradientValue

Completed in 1422 milliseconds