Home | History | Annotate | Download | only in utils

Lines Matching refs:dump

180 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint,
191 fDumper->dump(this, verb, buffer, paint);
198 this->dump(kSave_Verb, nullptr, "save()");
218 this->dump(kSave_Verb, paint, str.c_str());
223 this->dump(kRestore_Verb, nullptr, "restore");
232 this->dump(kMatrix_Verb, nullptr, "translate(%g %g)",
237 this->dump(kMatrix_Verb, nullptr, "scale(%g %g)",
243 this->dump(kMatrix_Verb, nullptr, "concat(%s)", str.c_str());
253 this->dump(kMatrix_Verb, nullptr, "setMatrix(%s)", str.c_str());
266 this->dump(kClip_Verb, nullptr, "clipRect(%s %s %s)", str.c_str(), toString(op),
274 this->dump(kClip_Verb, nullptr, "clipRRect(%s %s %s)", str.c_str(), toString(op),
282 this->dump(kClip_Verb, nullptr, "clipPath(%s %s %s)", str.c_str(), toString(op),
290 this->dump(kClip_Verb, nullptr, "clipRegion(%s %s)", str.c_str(),
298 this->dump(kDrawPaint_Verb, &paint, "drawPaint()");
303 this->dump(kDrawPoints_Verb, &paint, "drawPoints(%s, %d)", toString(mode),
310 this->dump(kDrawOval_Verb, &paint, "drawOval(%s)", str.c_str());
316 this->dump(kDrawRect_Verb, &paint, "drawRect(%s)", str.c_str());
322 this->dump(kDrawDRRect_Verb, &paint, "drawRRect(%s)", str.c_str());
330 this->dump(kDrawRRect_Verb, &paint, "drawDRRect(%s,%s)",
337 this->dump(kDrawPath_Verb, &paint, "drawPath(%s)", str.c_str());
344 this->dump(kDrawBitmap_Verb, paint, "drawBitmap(%s %g %g)", str.c_str(),
362 this->dump(kDrawBitmap_Verb, paint, "drawBitmapRect(%s %s)", bs.c_str(), rs.c_str());
371 this->dump(kDrawBitmap_Verb, paint, "drawBitmapNine(%s %s %s)", str.c_str(),
378 this->dump(kDrawBitmap_Verb, paint, "drawImage(%s %g %g)", str.c_str(),
396 this->dump(kDrawBitmap_Verb, paint, "drawImageRectToRect(%s %s)",
404 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(),
412 this->dump(kDrawText_Verb, &paint, "drawPosText(%s [%d] %g %g ...)",
421 this->dump(kDrawText_Verb, &paint, "drawPosTextH(%s [%d] %g %g ...)",
430 this->dump(kDrawText_Verb, &paint, "drawTextOnPath(%s [%d])",
438 this->dump(kDrawText_Verb, &paint, "drawTextBlob(%p) [%s]", blob, str.c_str());
439 // FIXME: dump the actual blob content?
444 this->dump(kDrawPicture_Verb, nullptr, "drawPicture(%p) %f:%f:%f:%f", picture,
450 this->dump(kDrawPicture_Verb, nullptr, "endPicture(%p) %f:%f:%f:%f", &picture,
460 this->dump(kDrawVertices_Verb, &paint, "drawVertices(%s [%d] %g %g ...)",
469 this->dump(kDrawPatch_Verb, &paint, "drawPatch(Vertices{[%f, %f], [%f, %f], [%f, %f], [%f, %f]}\
506 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb,