Lines Matching defs:ss
29 std::stringstream ss;
30 ss << "{ "
33 return ss.str();
43 std::stringstream ss;
44 ss << "{ "
47 return ss.str();
54 std::stringstream ss;
56 ss << "{ "
59 ss << ", "
62 ss << " }";
64 return ss.str();
70 std::stringstream ss;
71 ss << "[ ";
74 ss << JsonSerializeItemBody(it->second);
78 ss << ", " << JsonSerializeItemBody(it->second);
81 ss << " ]";
82 return ss.str();