Lines Matching refs:std
13 void SkIRect::dump(std::string& desc, int depth) const {
14 std::string split(depth, '\t');
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";
25 std::max(a.fLeft, b.fLeft),
26 std::max(a.fTop, b.fTop),
27 std::min(a.fRight, b.fRight),
28 std::min(a.fBottom, b.fBottom)
99 this->setLTRB(std::min(min[0], min[2]), std::min(min[1], min[3]),
100 std::max(max[0], max[2]), std::max(max[1], max[3]));
114 SkScalar L = std::max(al, bl); \
115 SkScalar R = std::min(ar, br); \
116 SkScalar T = std::max(at, bt); \
117 SkScalar B = std::min(ab, bb); \
141 fLeft = std::min(fLeft, r.fLeft);
142 fTop = std::min(fTop, r.fTop);
143 fRight = std::max(fRight, r.fRight);
144 fBottom = std::max(fBottom, r.fBottom);
181 void SkRect::dump(std::string& desc, int depth) const {
182 std::string split(depth, '\t');
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";