Lines Matching defs:target
84 void Renderer::processCommand(Json::Value& command, SkCanvas* target) { in processCommand()
161 static void apply_paint_color(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_color()
170 static Json::ArrayIndex decode_data(Json::Value bytes, void** target) { in decode_data()
281 static void apply_paint_shader(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_shader()
292 static void apply_paint_patheffect(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_patheffect()
303 static void apply_paint_maskfilter(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_maskfilter()
314 static void apply_paint_colorfilter(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_colorfilter()
325 static void apply_paint_xfermode(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_xfermode()
336 static void apply_paint_imagefilter(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_imagefilter()
347 static void apply_paint_style(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_style()
362 static void apply_paint_strokewidth(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_strokewidth()
369 static void apply_paint_strokemiter(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_strokemiter()
376 static void apply_paint_cap(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_cap()
391 static void apply_paint_antialias(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_antialias()
397 static void apply_paint_blur(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_blur()
435 static void apply_paint_dashing(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_dashing()
450 static void apply_paint_textalign(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_textalign()
471 static void apply_paint_textsize(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_textsize()
478 static void apply_paint_textscalex(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_textscalex()
485 static void apply_paint_textskewx(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_textskewx()
492 static void apply_paint_typeface(Json::Value& jsonPaint, SkPaint* target) { in apply_paint_typeface()
630 void Renderer::processTranslate(Json::Value& command, SkCanvas* target) { in processTranslate()
635 void Renderer::processScale(Json::Value& command, SkCanvas* target) { in processScale()
640 void Renderer::processMatrix(Json::Value& command, SkCanvas* target) { in processMatrix()
646 void Renderer::processSave(Json::Value& command, SkCanvas* target) { in processSave()
650 void Renderer::processRestore(Json::Value& command, SkCanvas* target) { in processRestore()
654 void Renderer::processSaveLayer(Json::Value& command, SkCanvas* target) { in processSaveLayer()
675 void Renderer::processPaint(Json::Value& command, SkCanvas* target) { in processPaint()
681 void Renderer::processRect(Json::Value& command, SkCanvas* target) { in processRect()
689 void Renderer::processRRect(Json::Value& command, SkCanvas* target) { in processRRect()
697 void Renderer::processOval(Json::Value& command, SkCanvas* target) { in processOval()
705 void Renderer::processPath(Json::Value& command, SkCanvas* target) { in processPath()
713 void Renderer::processText(Json::Value& command, SkCanvas* target) { in processText()
721 void Renderer::processPosText(Json::Value& command, SkCanvas* target) { in processPosText()
735 void Renderer::processTextOnPath(Json::Value& command, SkCanvas* target) { in processTextOnPath()
753 void Renderer::processTextBlob(Json::Value& command, SkCanvas* target) { in processTextBlob()
798 void Renderer::processPoints(Json::Value& command, SkCanvas* target) { in processPoints()
826 void Renderer::processClipRect(Json::Value& command, SkCanvas* target) { in processClipRect()
833 void Renderer::processClipRRect(Json::Value& command, SkCanvas* target) { in processClipRRect()
840 void Renderer::processClipPath(Json::Value& command, SkCanvas* target) { in processClipPath()
847 void Renderer::processImage(Json::Value& command, SkCanvas* target) { in processImage()
866 void Renderer::processImageRect(Json::Value& command, SkCanvas* target) { in processImageRect()
901 void Renderer::processBitmap(Json::Value& command, SkCanvas* target) { in processBitmap()
920 void Renderer::processBitmapRect(Json::Value& command, SkCanvas* target) { in processBitmapRect()
955 void render(const char* json, SkCanvas* target) { in render()