Lines Matching defs:dump
184 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint,
195 fDumper->dump(this, verb, buffer, paint);
202 this->dump(kSave_Verb, NULL, "save(0x%X)", flags);
222 this->dump(kSave_Verb, paint, str.c_str());
228 this->dump(kRestore_Verb, NULL, "restore");
232 this->dump(kMatrix_Verb, NULL, "translate(%g %g)",
238 this->dump(kMatrix_Verb, NULL, "scale(%g %g)",
244 this->dump(kMatrix_Verb, NULL, "rotate(%g)", SkScalarToFloat(degrees));
249 this->dump(kMatrix_Verb, NULL, "skew(%g %g)",
257 this->dump(kMatrix_Verb, NULL, "concat(%s)", str.c_str());
264 this->dump(kMatrix_Verb, NULL, "setMatrix(%s)", str.c_str());
277 this->dump(kClip_Verb, NULL, "clipRect(%s %s %s)", str.c_str(), toString(op),
285 this->dump(kClip_Verb, NULL, "clipRRect(%s %s %s)", str.c_str(), toString(op),
293 this->dump(kClip_Verb, NULL, "clipPath(%s %s %s)", str.c_str(), toString(op),
301 this->dump(kClip_Verb, NULL, "clipRegion(%s %s)", str.c_str(),
309 this->dump(kDrawPaint_Verb, &paint, "drawPaint()");
314 this->dump(kDrawPoints_Verb, &paint, "drawPoints(%s, %d)", toString(mode),
321 this->dump(kDrawOval_Verb, &paint, "drawOval(%s)", str.c_str());
327 this->dump(kDrawRect_Verb, &paint, "drawRect(%s)", str.c_str());
333 this->dump(kDrawRRect_Verb, &paint, "drawRRect(%s)", str.c_str());
339 this->dump(kDrawPath_Verb, &paint, "drawPath(%s)", str.c_str());
346 this->dump(kDrawBitmap_Verb, paint, "drawBitmap(%s %g %g)", str.c_str(),
365 this->dump(kDrawBitmap_Verb, paint, "drawBitmapRectToRect(%s %s)",
374 this->dump(kDrawBitmap_Verb, paint, "drawBitmapMatrix(%s %s)",
382 this->dump(kDrawBitmap_Verb, paint, "drawSprite(%s %d %d)", str.c_str(),
390 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(),
398 this->dump(kDrawText_Verb, &paint, "drawPosText(%s [%d] %g %g ...)",
408 this->dump(kDrawText_Verb, &paint, "drawPosTextH(%s [%d] %g %g ...)",
418 this->dump(kDrawText_Verb, &paint, "drawTextOnPath(%s [%d])",
423 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %d:%d", &picture,
428 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %d:%d", &picture,
437 this->dump(kDrawVertices_Verb, &paint, "drawVertices(%s [%d] %g %g ...)",
443 // this->dump(kDrawData_Verb, NULL, "drawData(%d)", length);
444 this->dump(kDrawData_Verb, NULL, "drawData(%d) %.*s", length,
449 this->dump(kBeginCommentGroup_Verb, NULL, "beginCommentGroup(%s)", description);
453 this->dump(kAddComment_Verb, NULL, "addComment(%s, %s)", kywd, value);
457 this->dump(kEndCommentGroup_Verb, NULL, "endCommentGroup()");
481 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb,