Lines Matching defs:shape
13 GrShape& GrShape::operator=(const GrShape& shape) {
14 switch (shape.type()) {
19 this->setPoint(shape.fPoint);
22 this->setRect(shape.fRect);
25 this->setRRect(shape.fRRect);
28 this->setPath(shape.fPath);
31 this->setArc(shape.fArc);
34 this->setLine(shape.fLine);
38 fStart = shape.fStart;
39 fCW = shape.fCW;
40 fInverted = shape.fInverted;
172 // A zero area, filled shape so go straight to empty
311 case Type::kPoint: // fall through, currently choosing not to test if shape == point
363 // Bounds where left == bottom or top == right can indicate a line or point shape. We return
364 // inverted bounds for a truly empty shape.