Lines Matching refs:dump
178 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint, in dump() function in SkDumpCanvas
189 fDumper->dump(this, verb, buffer, paint); in dump()
196 this->dump(kSave_Verb, NULL, "save(0x%X)", flags); in willSave()
216 this->dump(kSave_Verb, paint, str.c_str()); in willSaveLayer()
221 this->dump(kRestore_Verb, NULL, "restore"); in willRestore()
230 this->dump(kMatrix_Verb, NULL, "translate(%g %g)", in didConcat()
235 this->dump(kMatrix_Verb, NULL, "scale(%g %g)", in didConcat()
241 this->dump(kMatrix_Verb, NULL, "concat(%s)", str.c_str()); in didConcat()
251 this->dump(kMatrix_Verb, NULL, "setMatrix(%s)", str.c_str()); in didSetMatrix()
264 this->dump(kClip_Verb, NULL, "clipRect(%s %s %s)", str.c_str(), toString(op), in onClipRect()
272 this->dump(kClip_Verb, NULL, "clipRRect(%s %s %s)", str.c_str(), toString(op), in onClipRRect()
280 this->dump(kClip_Verb, NULL, "clipPath(%s %s %s)", str.c_str(), toString(op), in onClipPath()
288 this->dump(kClip_Verb, NULL, "clipRegion(%s %s)", str.c_str(), in onClipRegion()
296 this->dump(kCull_Verb, NULL, "pushCull(%s)", str.c_str()); in onPushCull()
300 this->dump(kCull_Verb, NULL, "popCull()"); in onPopCull()
305 this->dump(kDrawPaint_Verb, &paint, "drawPaint()"); in drawPaint()
310 this->dump(kDrawPoints_Verb, &paint, "drawPoints(%s, %d)", toString(mode), in drawPoints()
317 this->dump(kDrawOval_Verb, &paint, "drawOval(%s)", str.c_str()); in drawOval()
323 this->dump(kDrawRect_Verb, &paint, "drawRect(%s)", str.c_str()); in drawRect()
329 this->dump(kDrawDRRect_Verb, &paint, "drawRRect(%s)", str.c_str()); in drawRRect()
337 this->dump(kDrawRRect_Verb, &paint, "drawDRRect(%s,%s)", in onDrawDRRect()
344 this->dump(kDrawPath_Verb, &paint, "drawPath(%s)", str.c_str()); in drawPath()
351 this->dump(kDrawBitmap_Verb, paint, "drawBitmap(%s %g %g)", str.c_str(), in drawBitmap()
370 this->dump(kDrawBitmap_Verb, paint, "drawBitmapRectToRect(%s %s)", in drawBitmapRectToRect()
379 this->dump(kDrawBitmap_Verb, paint, "drawBitmapMatrix(%s %s)", in drawBitmapMatrix()
387 this->dump(kDrawBitmap_Verb, paint, "drawSprite(%s %d %d)", str.c_str(), in drawSprite()
395 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(), in onDrawText()
403 this->dump(kDrawText_Verb, &paint, "drawPosText(%s [%d] %g %g ...)", in onDrawPosText()
412 this->dump(kDrawText_Verb, &paint, "drawPosTextH(%s [%d] %g %g ...)", in onDrawPosTextH()
421 this->dump(kDrawText_Verb, &paint, "drawTextOnPath(%s [%d])", in onDrawTextOnPath()
426 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %d:%d", picture, in onDrawPicture()
431 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %d:%d", &picture, in onDrawPicture()
440 this->dump(kDrawVertices_Verb, &paint, "drawVertices(%s [%d] %g %g ...)", in drawVertices()
447 this->dump(kDrawData_Verb, NULL, "drawData(%d) %.*s", length, in drawData()
452 this->dump(kBeginCommentGroup_Verb, NULL, "beginCommentGroup(%s)", description); in beginCommentGroup()
456 this->dump(kAddComment_Verb, NULL, "addComment(%s, %s)", kywd, value); in addComment()
460 this->dump(kEndCommentGroup_Verb, NULL, "endCommentGroup()"); in endCommentGroup()
484 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb, in dump() function in SkFormatDumper