Home | History | Annotate | Download | only in wince

Lines Matching refs:m_path

33     : m_path(new PlatformPath())
38 : m_path(new PlatformPath(*other.m_path))
44 delete m_path;
50 delete m_path;
51 m_path = new PlatformPath(*other.m_path);
58 return m_path->contains(point, rule);
63 m_path->translate(size);
68 return m_path->boundingRect();
73 m_path->moveTo(point);
78 m_path->addLineTo(point);
83 m_path->addQuadCurveTo(cp, p);
88 m_path->addBezierCurveTo(cp1, cp2, p);
93 m_path->addArcTo(p1, p2, radius);
98 m_path->closeSubpath();
103 m_path->addEllipse(p, r, r, sar, ear, anticlockwise);
108 m_path->addRect(r);
113 m_path->addEllipse(r);
118 m_path->clear();
123 return m_path->isEmpty();
128 m_path->apply(info, function);
133 m_path->transform(t);
160 return m_path->lastPoint();