Lines Matching refs:string_repr
87 std::stringstream string_repr; in to_string() local
88 string_repr << "Command {\n"; in to_string()
89 string_repr << "\t.workload = " << workload << ",\n"; in to_string()
90 string_repr << "\t.from_dir = " << from_dir << ",\n"; in to_string()
91 string_repr << "\t.from_basename = " << from_basename << ",\n"; in to_string()
92 string_repr << "\t.to_dir = " << to_dir << ",\n"; in to_string()
93 string_repr << "\t.to_basename = " << to_basename << ",\n"; in to_string()
94 string_repr << "\t.drop_state = " << drop_state << ",\n"; in to_string()
95 string_repr << "\t.n_file = " << n_file << "\n"; in to_string()
96 string_repr << "}\n"; in to_string()
97 return string_repr.str(); in to_string()