Home
last modified time | relevance | path

Searched refs:os1 (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/libs/fusion/test/sequence/
Dio.cpp55 useThisOStringStream os1; in main() local
58 os1 << tuple_open('['); in main()
59 os1 << tuple_close(']'); in main()
60 os1 << tuple_delimiter(','); in main()
61 os1 << make_vector(1, 2, 3); in main()
63 BOOST_TEST (os1.str() == std::string("[1,2,3]") ); in main()
92 os1 << make_vector(1, 2, 3); in main()
93 BOOST_TEST (os1.str() == std::string("[1,2,3][1,2,3]") ); in main()
/third_party/boost/libs/tuple/test/
Dio_test.cpp47 useThisOStringStream os1; in main() local
50 os1 << set_open('['); in main()
51 os1 << set_close(']'); in main()
52 os1 << set_delimiter(','); in main()
53 os1 << make_tuple(1, 2, 3); in main()
54 BOOST_CHECK (os1.str() == std::string("[1,2,3]") ); in main()
69 os1 << make_tuple(1, 2, 3); in main()
70 BOOST_CHECK (os1.str() == std::string("[1,2,3][1,2,3]") ); in main()
/third_party/boost/libs/histogram/examples/
Dguide_histogram_projection.cpp33 std::ostringstream os1; in main() local
35 os1 << "(" << x.index(0) << ", " << x.index(1) << "): " << *x << "\n"; in main()
36 std::cout << os1.str() << std::flush; in main()
37 assert(os1.str() == "(0, 0): 1\n" in main()
/third_party/boost/libs/histogram/test/
Ddetail_array_wrapper_serialization_test.cpp35 std::stringstream os1; in run_tests() local
37 OArchive oa(os1); in run_tests()
49 BOOST_TEST_EQ(os1.str(), os2.str()); in run_tests()
53 IArchive ia(os1); in run_tests()
/third_party/python/Modules/clinic/
D_localemodule.c.h89 _locale_strcoll_impl(PyObject *module, PyObject *os1, PyObject *os2);
95 PyObject *os1; in _locale_strcoll() local
108 os1 = args[0]; in _locale_strcoll()
117 return_value = _locale_strcoll_impl(module, os1, os2); in _locale_strcoll()
/third_party/openssl/crypto/rsa/
Drsa_ameth.c838 ASN1_STRING *os1 = NULL; in rsa_item_sign() local
839 os1 = rsa_ctx_to_pss_string(pkctx); in rsa_item_sign()
840 if (!os1) in rsa_item_sign()
844 ASN1_STRING *os2 = ASN1_STRING_dup(os1); in rsa_item_sign()
846 ASN1_STRING_free(os1); in rsa_item_sign()
853 V_ASN1_SEQUENCE, os1); in rsa_item_sign()
/third_party/boost/libs/process/test/
Dsparring_partner.cpp207 stream<file_descriptor_sink> os1(sink1); in main() local
208 os1 << v[1] << std::endl; in main()
Dpipe.cpp286 bp::opstream os1(p2);
289 os2.pipe(os1.pipe());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp49 raw_string_ostream os1(o1), os2(o2); in PrintResults() local
50 V1->printAsOperand(os1, true, M); in PrintResults()
/third_party/python/Modules/
D_localemodule.c356 _locale_strcoll_impl(PyObject *module, PyObject *os1, PyObject *os2) in _locale_strcoll_impl() argument
363 ws1 = PyUnicode_AsWideCharString(os1, NULL); in _locale_strcoll_impl()
/third_party/boost/libs/optional/doc/
D28_ref_optional_semantics.qbk699 optional<size_t> os1 = o1.map(length), os2 = o2.map(length);
700 assert ( !os1 ) ;
730 optional<char> os1 = o1.flat_map(first_char), os2 = o2.flat_map(first_char);
731 assert ( !os1 ) ;