Lines Matching defs:desc
13 void SkIRect::dump(std::string& desc, int depth) const {
15 desc += split + "\n SkIRect:{ \n";
16 desc += split + "\t fLeft:" + std::to_string(fLeft) + "\n";
17 desc += split + "\t fTop:" + std::to_string(fTop) + "\n";
18 desc += split + "\t fRight:" + std::to_string(fRight) + "\n";
19 desc += split + "\t fBottom:" + std::to_string(fBottom) + "\n";
20 desc += split + "}\n";
181 void SkRect::dump(std::string& desc, int depth) const {
183 desc += split + "\n SkRect:{ \n";
184 desc += split + "\t fLeft:" + std::to_string(fLeft) + "\n";
185 desc += split + "\t fTop:" + std::to_string(fTop) + "\n";
186 desc += split + "\t fRight:" + std::to_string(fRight) + "\n";
187 desc += split + "\t fBottom:" + std::to_string(fBottom) + "\n";
188 desc += split + "}\n";