Home
last modified time | relevance | path

Searched refs:SKJSONCANVAS_ATTRIBUTE_COORDS (Results 1 – 3 of 3) sorted by relevance

/external/skia/tools/json/
DSkJSONCanvas.cpp585 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makeRect(rect); in onDrawRect()
593 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makeRect(rect); in onDrawOval()
601 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makeRRect(rrect); in onDrawRRect()
661 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makePoint(dx, dy); in onDrawImage()
705 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makePoint(dx, dy); in onDrawBitmap()
748 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makePoint(x, y); in onDrawText()
763 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = coords; in onDrawPosText()
825 run[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makePoint(iter.offset()); in onDrawTextBlob()
855 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makeRect(rect); in onClipRect()
864 command[SKJSONCANVAS_ATTRIBUTE_COORDS] = this->makeRRect(rrect); in onClipRRect()
DSkJSONRenderer.cpp683 this->getRect(command[SKJSONCANVAS_ATTRIBUTE_COORDS], &rect); in processRect()
691 this->getRRect(command[SKJSONCANVAS_ATTRIBUTE_COORDS], &rrect); in processRRect()
699 this->getRect(command[SKJSONCANVAS_ATTRIBUTE_COORDS], &rect); in processOval()
717 Json::Value coords = command[SKJSONCANVAS_ATTRIBUTE_COORDS]; in processText()
725 Json::Value coords = command[SKJSONCANVAS_ATTRIBUTE_COORDS]; in processPosText()
763 Json::Value coords = run[SKJSONCANVAS_ATTRIBUTE_COORDS]; in processTextBlob()
828 this->getRect(command[SKJSONCANVAS_ATTRIBUTE_COORDS], &rect); in processClipRect()
835 this->getRRect(command[SKJSONCANVAS_ATTRIBUTE_COORDS], &rrect); in processClipRRect()
852 Json::Value point = command[SKJSONCANVAS_ATTRIBUTE_COORDS]; in processImage()
906 Json::Value point = command[SKJSONCANVAS_ATTRIBUTE_COORDS]; in processBitmap()
DSkJSONCanvas.h53 #define SKJSONCANVAS_ATTRIBUTE_COORDS "coords" macro