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

  /external/webkit/Source/WebCore/platform/graphics/wince/
GradientWinCE.cpp 40 if (m_stops.size())
41 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
44 return m_stops;
  /external/webkit/Source/WebCore/platform/graphics/
Gradient.cpp 98 m_stops.append(ColorStop(value, r, g, b, a));
106 m_stops.append(stop);
124 if (!m_stops.size())
128 if (m_stops.size() == 2 && compareStops(*m_stops.begin(), *m_stops.end()))
131 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
139 if (m_stops.isEmpty()) {
147 if (m_stops.size()
    [all...]
Gradient.h 162 mutable Vector<ColorStop, 2> m_stops; member in class:WebCore::Gradient
  /external/webkit/Source/WebCore/platform/graphics/cg/
GradientCG.cpp 86 colorComponents.reserveCapacity(m_stops.size() * 4); // RGBA components per stop
89 locations.reserveCapacity(m_stops.size());
91 for (size_t i = 0; i < m_stops.size(); ++i) {
92 colorComponents.uncheckedAppend(m_stops[i].red);
93 colorComponents.uncheckedAppend(m_stops[i].green);
94 colorComponents.uncheckedAppend(m_stops[i].blue);
95 colorComponents.uncheckedAppend(m_stops[i].alpha);
97 locations.uncheckedAppend(m_stops[i].stop);
100 m_gradient = CGGradientCreateWithColorComponents(deviceRGBColorSpaceRef(), colorComponents.data(), locations.data(), m_stops.size());
  /external/webkit/Source/WebCore/svg/
GradientAttributes.h 44 const Vector<Gradient::ColorStop>& stops() const { return m_stops; }
66 m_stops = value;
80 Vector<Gradient::ColorStop> m_stops; member in struct:WebCore::GradientAttributes
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GradientHaiku.cpp 54 size_t size = m_stops.size();
56 const ColorStop& stop = m_stops[i];
  /external/webkit/Source/WebCore/platform/graphics/qt/
GradientQt.cpp 66 Vector<ColorStop>::iterator stopIterator = m_stops.begin();
69 while (stopIterator != m_stops.end()) {
93 if (m_stops.isEmpty()) {
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GradientCairo.cpp 55 Vector<ColorStop>::iterator stopIterator = m_stops.begin();
56 while (stopIterator != m_stops.end()) {
  /external/webkit/Source/WebCore/platform/graphics/skia/
GradientSkia.cpp 121 size_t countUsed = totalStopsNeeded(m_stops.data(), m_stops.size());
123 ASSERT(countUsed >= m_stops.size());
130 fillStops(m_stops.data(), m_stops.size(), pos, colors);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.h 56 void addStop(const CSSGradientColorStop& stop) { m_stops.append(stop); }
58 Vector<CSSGradientColorStop>& stops() { return m_stops; }
95 Vector<CSSGradientColorStop> m_stops; member in class:WebCore::CSSGradientValue
CSSGradientValue.cpp 81 if (m_stops.size())
82 std::stable_sort(m_stops.begin(), m_stops.end(), compareStops);
120 for (unsigned i = 0; i < m_stops.size(); i++) {
121 const CSSGradientColorStop& stop = m_stops[i];
138 size_t numStops = m_stops.size();
153 const CSSGradientColorStop& stop = m_stops[i];
412 for (size_t i = 0; i < m_stops.size(); ++i) {
413 const CSSGradientColorStop& stop = m_stops[i];
435 for (unsigned i = 0; i < m_stops.size(); i++)
    [all...]

Completed in 141 milliseconds