Home | History | Annotate | Download | only in debugger

Lines Matching full:mpath

112     SkString* mPath = new SkString("Path (");
118 mPath->append(gFillStrings[path.getFillType()]);
119 mPath->append(", ");
126 mPath->append(gConvexityStrings[path.getConvexity()]);
127 mPath->append(", ");
130 mPath->append("isRect, ");
132 mPath->append("isNotRect, ");
135 mPath->appendS32(path.countVerbs());
136 mPath->append("V, ");
137 mPath->appendS32(path.countPoints());
138 mPath->append("P): ");
155 mPath->append(gVerbStrings[verb]);
156 mPath->append(" ");
159 mPath->append("(");
160 mPath->appendScalar(points[gPtOffsetPerVerb[verb]+i].fX);
161 mPath->append(", ");
162 mPath->appendScalar(points[gPtOffsetPerVerb[verb]+i].fY);
163 mPath->append(")");
167 mPath->append("(");
168 mPath->appendScalar(iter.conicWeight());
169 mPath->append(")");
172 mPath->append(" ");
178 mPath->append(*boundStr);
182 return mPath;