Home
last modified time | relevance | path

Searched refs:os3 (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/date_time/test/gregorian/
Dtestfacet.cpp154 std::stringstream os3; in main() local
155 os3 << d1; in main()
156 check("check any old ostream: "+os3.str(), in main()
157 os3.str() == std::string("2002-Oct-01")); in main()
173 os3.imbue(german_dates1); in main()
174 os3.str(""); in main()
175 os3 << d1; in main()
176 check("check date order: "+os3.str(), in main()
177 os3.str() == std::string("01.10.2002")); in main()
189 os3.imbue(german_dates2); in main()
[all …]
/third_party/boost/libs/tuple/test/
Dio_test.cpp73 useThisOStringStream os3; in main() local
74 os3 << make_tuple(); in main()
75 BOOST_CHECK (os3.str() == std::string("()") ); in main()
76 os3 << set_open('['); in main()
77 os3 << set_close(']'); in main()
78 os3 << make_tuple(); in main()
79 BOOST_CHECK (os3.str() == std::string("()[]") ); in main()
/third_party/boost/libs/histogram/examples/
Dguide_histogram_projection.cpp51 std::ostringstream os3; in main() local
52 for (auto&& x : indexed(hr1)) os3 << "(- ," << x.index(0) << "): " << *x << "\n"; in main()
53 std::cout << os3.str() << std::flush; in main()
54 assert(os3.str() == "(- ,0): 2\n" in main()