Lines Matching refs:ss
366 std::stringstream ss;
367 ss << "Rect (" << std::fixed << std::setprecision(2) << x_ << ", " << y_ << ") - [";
369 ss << "INFINITE";
371 ss << width_;
373 ss << " x ";
375 ss << "INFINITE";
377 ss << height_;
379 ss << "]";
380 std::string output = ss.str();
386 std::stringstream ss;
387 ss << "[" << std::fixed << std::setprecision(2) << x_ << ", " << y_ << "][";
389 ss << "INFINITE";
391 ss << (x_ + width_);
393 ss << ",";
395 ss << "INFINITE";
397 ss << (y_ + height_);
399 ss << "]";
400 std::string output = ss.str();