• Home
  • Raw
  • Download

Lines Matching refs:dump

182 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint,  in dump()  function in SkDumpCanvas
193 fDumper->dump(this, verb, buffer, paint); in dump()
200 this->dump(kSave_Verb, NULL, "save(0x%X)", flags); in save()
220 this->dump(kSave_Verb, paint, str.c_str()); in saveLayer()
226 this->dump(kRestore_Verb, NULL, "restore"); in restore()
230 this->dump(kMatrix_Verb, NULL, "translate(%g %g)", in translate()
236 this->dump(kMatrix_Verb, NULL, "scale(%g %g)", in scale()
242 this->dump(kMatrix_Verb, NULL, "rotate(%g)", SkScalarToFloat(degrees)); in rotate()
247 this->dump(kMatrix_Verb, NULL, "skew(%g %g)", in skew()
255 this->dump(kMatrix_Verb, NULL, "concat(%s)", str.c_str()); in concat()
262 this->dump(kMatrix_Verb, NULL, "setMatrix(%s)", str.c_str()); in setMatrix()
275 this->dump(kClip_Verb, NULL, "clipRect(%s %s %s)", str.c_str(), toString(op), in clipRect()
283 this->dump(kClip_Verb, NULL, "clipRRect(%s %s %s)", str.c_str(), toString(op), in clipRRect()
291 this->dump(kClip_Verb, NULL, "clipPath(%s %s %s)", str.c_str(), toString(op), in clipPath()
299 this->dump(kClip_Verb, NULL, "clipRegion(%s %s)", str.c_str(), in clipRegion()
307 this->dump(kDrawPaint_Verb, &paint, "drawPaint()"); in drawPaint()
312 this->dump(kDrawPoints_Verb, &paint, "drawPoints(%s, %d)", toString(mode), in drawPoints()
319 this->dump(kDrawOval_Verb, &paint, "drawOval(%s)", str.c_str()); in drawOval()
325 this->dump(kDrawRect_Verb, &paint, "drawRect(%s)", str.c_str()); in drawRect()
331 this->dump(kDrawRRect_Verb, &paint, "drawRRect(%s)", str.c_str()); in drawRRect()
337 this->dump(kDrawPath_Verb, &paint, "drawPath(%s)", str.c_str()); in drawPath()
344 this->dump(kDrawBitmap_Verb, paint, "drawBitmap(%s %g %g)", str.c_str(), in drawBitmap()
362 this->dump(kDrawBitmap_Verb, paint, "drawBitmapRectToRect(%s %s)", in drawBitmapRectToRect()
371 this->dump(kDrawBitmap_Verb, paint, "drawBitmapMatrix(%s %s)", in drawBitmapMatrix()
379 this->dump(kDrawBitmap_Verb, paint, "drawSprite(%s %d %d)", str.c_str(), in drawSprite()
387 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(), in drawText()
395 this->dump(kDrawText_Verb, &paint, "drawPosText(%s [%d] %g %g ...)", in drawPosText()
405 this->dump(kDrawText_Verb, &paint, "drawPosTextH(%s [%d] %g %g ...)", in drawPosTextH()
415 this->dump(kDrawText_Verb, &paint, "drawTextOnPath(%s [%d])", in drawTextOnPath()
420 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %d:%d", &picture, in drawPicture()
425 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %d:%d", &picture, in drawPicture()
434 this->dump(kDrawVertices_Verb, &paint, "drawVertices(%s [%d] %g %g ...)", in drawVertices()
441 this->dump(kDrawData_Verb, NULL, "drawData(%d) %.*s", length, in drawData()
466 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb, in dump() function in SkFormatDumper