Lines Matching refs:dump
157 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint,
168 fDumper->dump(this, verb, buffer, paint);
175 this->dump(kSave_Verb, NULL, "save(0x%X)", flags);
181 this->dump(kSave_Verb, paint, "saveLayer(0x%X)", flags);
187 this->dump(kRestore_Verb, NULL, "restore");
191 this->dump(kMatrix_Verb, NULL, "translate(%g %g)",
197 this->dump(kMatrix_Verb, NULL, "scale(%g %g)",
203 this->dump(kMatrix_Verb, NULL, "rotate(%g)", SkScalarToFloat(degrees));
208 this->dump(kMatrix_Verb, NULL, "skew(%g %g)",
216 this->dump(kMatrix_Verb, NULL, "concat(%s)", str.c_str());
223 this->dump(kMatrix_Verb, NULL, "setMatrix(%s)", str.c_str());
232 this->dump(kClip_Verb, NULL, "clipRect(%s %s)", str.c_str(), toString(op));
239 this->dump(kClip_Verb, NULL, "clipPath(%s %s)", str.c_str(), toString(op));
246 this->dump(kClip_Verb, NULL, "clipRegion(%s %s)", str.c_str(),
254 this->dump(kDrawPaint_Verb, &paint, "drawPaint()");
259 this->dump(kDrawPoints_Verb, &paint, "drawPoints(%s, %d)", toString(mode),
266 this->dump(kDrawRect_Verb, &paint, "drawRect(%s)", str.c_str());
272 this->dump(kDrawPath_Verb, &paint, "drawPath(%s)", str.c_str());
279 this->dump(kDrawBitmap_Verb, paint, "drawBitmap(%s %g %g)", str.c_str(),
297 this->dump(kDrawBitmap_Verb, paint, "drawBitmapRect(%s %s)",
306 this->dump(kDrawBitmap_Verb, paint, "drawBitmapMatrix(%s %s)",
314 this->dump(kDrawBitmap_Verb, paint, "drawSprite(%s %d %d)", str.c_str(),
322 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(),
330 this->dump(kDrawText_Verb, &paint, "drawPosText(%s [%d] %g %g ...)",
340 this->dump(kDrawText_Verb, &paint, "drawPosTextH(%s [%d] %g %g ...)",
350 this->dump(kDrawText_Verb, &paint, "drawTextOnPath(%s [%d])",
355 this->dump(kDrawShape_Verb, NULL, "drawShape(%p)", shape);
359 this->dump(kDrawShape_Verb, NULL, "endShape(%p)", shape);
363 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %d:%d", &picture,
368 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %d:%d", &picture,
377 this->dump(kDrawVertices_Verb, &paint, "drawVertices(%s [%d] %g %g ...)",
383 // this->dump(kDrawData_Verb, NULL, "drawData(%d)", length);
384 this->dump(kDrawData_Verb, NULL, "drawData(%d) %.*s", length,
414 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb,