Lines Matching defs:stream

1052 	std::ostringstream stream;
1054 stream << spec.atomicCounterCount << (spec.atomicCounterCount == 1 ? "_counter" : "_counters");
1055 stream << "_" << spec.callCount << (spec.callCount == 1 ? "_call" : "_calls");
1056 stream << "_" << spec.threadCount << (spec.threadCount == 1 ? "_thread" : "_threads");
1058 return stream.str();
1063 std::ostringstream stream;
1066 stream
1071 stream << "atomicCounter()";
1078 stream << ", ";
1080 stream << " atomicCounterIncrement()";
1087 stream << ", ";
1089 stream << " atomicCounterDecrement()";
1093 stream << " calls with ";
1096 stream << " branches, ";
1098 stream << spec.atomicCounterCount << " atomic counters, " << spec.callCount << " calls and " << spec.threadCount << " threads.";
1100 return stream.str();
1105 std::ostringstream stream;
1110 stream << "get";
1117 stream << "_";
1119 stream << "inc";
1126 stream << "_";
1128 stream << "dec";
1133 stream << "_branch";
1135 return stream.str();
1140 std::ostringstream stream;
1143 stream
1148 stream << "atomicCounter()";
1155 stream << ", ";
1157 stream << " atomicCounterIncrement()";
1164 stream << ", ";
1166 stream << " atomicCounterDecrement()";
1172 stream << " calls with branches.";
1174 stream << ".";
1176 return stream.str();
1181 std::ostringstream stream;
1190 stream << "invalid_binding";
1198 stream << "_";
1203 stream << "basic_offset";
1207 stream << "reverse_offset";
1211 stream << "invalid_offset";
1215 stream << "first_offset_set";
1219 stream << "default_offset_set";
1223 stream << "reset_default_offset";
1234 return stream.str();
1239 std::ostringstream stream;
1244 stream << "Test using atomic counters with explicit layout bindings and";
1248 stream << "Test using atomic counters with invalid explicit layout bindings and";
1252 stream << "Test using atomic counters with invalid default layout binding and";
1262 stream << " no explicit offsets.";
1266 stream << "explicit continuos offsets.";
1270 stream << "reversed explicit offsets.";
1274 stream << "invalid explicit offsets.";
1278 stream << "only first counter with explicit offset.";
1282 stream << "default offset.";
1286 stream << "default offset specified twice.";
1293 return stream.str();