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

  /external/webkit/Source/WebCore/svg/
SVGPolyElement.h 42 SVGPointList& pointList() const { return m_points.value; }
64 mutable SVGSynchronizableAnimatedProperty<SVGPointList> m_points; member in class:WebCore::SVGPolyElement
SVGPolyElement.cpp 56 m_points.value = newList;
125 if (!m_points.shouldSynchronize)
128 SVGAnimatedPropertySynchronizer<true>::synchronize(this, SVGNames::pointsAttr, m_points.value.valueAsString());
134 m_points.shouldSynchronize = true;
136 (this, SVGNames::pointsAttr, SVGNames::pointsAttr.localName(), m_points.value);
145 m_points.shouldSynchronize = true;
147 (this, SVGNames::pointsAttr, SVGNames::pointsAttr.localName(), m_points.value);
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.h 100 PlatformPathElement(): m_type(PathCloseSubpath) { m_data.m_points[0].set(0, 0); }
115 return n > 1 ? m_data.m_points[n - 1] : m_data.m_points[0];
117 const PathPoint& pointAt(int index) const { return m_data.m_points[index]; }
134 PathPoint m_points[4]; member in union:WebCore::PlatformPathElement::__anon13407
PlatformPathWinCE.cpp 402 m_data.m_points[i].move(offset);
409 FloatPoint p = t.mapPoint(m_data.m_points[i]);
410 m_data.m_points[i].set(p.x(), p.y());
451 inflateRectToContainPoint(r, m_data.m_points[i].m_x, m_data.m_points[i].m_y);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 162 m_points[0] = cp0;
163 m_points[1] = cp1;
164 m_points[2] = cp2;
165 m_points[3] = cp3;
178 m_points[0] = p0;
179 m_points[1] = p1;
189 return m_points[i];
208 chopCubicAt(m_points, dst, param);
248 return numXRayCrossingsForCubic(xRay, m_points, ambiguous);
250 return xRayCrossesLine(xRay, m_points, ambiguous) ? 1 : 0
346 FloatPoint m_points[4]; member in class:WebCore::LoopBlinnPathProcessorImplementation::Segment
    [all...]

Completed in 707 milliseconds