Home
last modified time | relevance | path

Searched refs:sout (Results 1 – 25 of 52) sorted by relevance

123

/third_party/boost/libs/proto/test/
Dflatten.cpp15 std::ostream &operator <<(std::ostream &sout, boost::proto::tag::shift_right) in operator <<() argument
17 return sout << ">>"; in operator <<()
20 std::ostream &operator <<(std::ostream &sout, boost::proto::tag::bitwise_or) in operator <<() argument
22 return sout << "|"; in operator <<()
26 std::ostream &operator <<(std::ostream &sout, boost::proto::expr<boost::proto::tag::terminal, Args,… in operator <<() argument
28 return sout << boost::proto::value(*op); in operator <<()
32 std::ostream &operator <<(std::ostream &sout, boost::proto::basic_expr<boost::proto::tag::terminal,… in operator <<() argument
34 return sout << boost::proto::value(*op); in operator <<()
38 std::ostream &operator <<(std::ostream &sout, boost::proto::expr<Tag, Args, 1> const *op) in operator <<() argument
40 return sout << Tag() << boost::addressof(boost::proto::child(*op).proto_base()); in operator <<()
[all …]
Ddisplay_expr.cpp28 std::stringstream sout; in test_display_expr() local
29 proto::display_expr(i + A(), sout); in test_display_expr()
30 BOOST_CHECK_EQUAL(sout.str(), std::string( in test_display_expr()
38 std::stringstream sout; in test_display_expr() local
39 proto::display_expr(i + B(), sout); in test_display_expr()
40 BOOST_CHECK_EQUAL(sout.str(), std::string( in test_display_expr()
48 std::stringstream sout; in test_display_expr() local
50 proto::display_expr(i + C(), sout); in test_display_expr()
51 BOOST_CHECK_EQUAL(sout.str(), std::string( in test_display_expr()
Dbug2407.cpp43 std::ostream &operator<<(std::ostream &sout, e<E> const &x) in operator <<() argument
45 return sout; in operator <<()
Dlambda.cpp162 std::stringstream sout; in test_lambda() local
163 (sout << _1 << " -- " << _2)(42, "Life, the Universe and Everything!"); in test_lambda()
164 BOOST_CHECK_EQUAL("42 -- Life, the Universe and Everything!", sout.str()); in test_lambda()
Denv_var.cpp83 std::stringstream sout; in test_as_env() local
86 proto::env<proto::data_type, std::stringstream &> e6 = proto::as_env(sout); in test_as_env()
87 BOOST_CHECK_EQUAL(&e6[proto::data], &sout); in test_as_env()
106 std::stringstream sout; in test_comma() local
109 proto::env<proto::data_type, std::stringstream &> e6 = (proto::data = sout); in test_comma()
110 BOOST_CHECK_EQUAL(&e6[proto::data], &sout); in test_comma()
/third_party/lz4/contrib/gen_manual/
Dgen_manual.cpp89 void print_line(stringstream &sout, string line) in print_line() argument
98 sout << line.substr(0, spos); in print_line()
99 sout << "</b>" << line.substr(spos) << "<b>" << '\n'; in print_line()
101 sout << line << '\n'; in print_line()
112 stringstream sout; in main() local
145 sout << "<pre><b>"; in main()
147 print_line(sout, lines[l]); in main()
149 sout << "</b></pre><BR>" << endl; in main()
156 sout << "<pre><b>"; in main()
157 print_line(sout, line); in main()
[all …]
/third_party/boost/boost/proto/
Ddebug.hpp29 inline std::ostream &operator <<(std::ostream &sout, Tag const &) \
31 return sout << BOOST_PP_STRINGIZE(Tag); \
89 ostream_wrapper(std::ostream &sout) in ostream_wrapper()
90 : sout_(sout) in ostream_wrapper()
135 explicit display_expr_impl(std::ostream &sout, int depth = 0) in display_expr_impl()
138 , sout_(sout) in display_expr_impl()
201 explicit display_expr(std::ostream &sout = std::cout, int depth = 0) in display_expr()
203 , sout_(sout) in display_expr()
228 void display_expr(Expr const &expr, std::ostream &sout) in display_expr() argument
230 functional::display_expr(sout, 0)(expr); in display_expr() local
/third_party/python/Lib/test/
Dtest_codeccallbacks.py102 sout = b"&laquo;&real;&raquo; = &lang;&#4660;&euro;&rang;"
103 self.assertEqual(sin.encode("ascii", "test.xmlcharnamereplace"), sout)
104 sout = b"\xab&real;\xbb = &lang;&#4660;&euro;&rang;"
105 self.assertEqual(sin.encode("latin-1", "test.xmlcharnamereplace"), sout)
106 sout = b"\xab&real;\xbb = &lang;&#4660;\xa4&rang;"
107 self.assertEqual(sin.encode("iso-8859-15", "test.xmlcharnamereplace"), sout)
130sout = b"\033[1mNOT SIGN, ETHIOPIC SYLLABLE SEE, EURO SIGN, CJK UNIFIED IDEOGRAPH-8000\033[0m"
131 self.assertEqual(sin.encode("ascii", "test.uninamereplace"), sout)
133 sout = b"\xac\033[1mETHIOPIC SYLLABLE SEE, EURO SIGN, CJK UNIFIED IDEOGRAPH-8000\033[0m"
134 self.assertEqual(sin.encode("latin-1", "test.uninamereplace"), sout)
[all …]
/third_party/boost/libs/proto/example/
Drgb.cpp19 friend std::ostream &operator <<(std::ostream &sout, RedTag) in operator <<() argument
21 return sout << "This expression is red."; in operator <<()
27 friend std::ostream &operator <<(std::ostream &sout, BlueTag) in operator <<() argument
29 return sout << "This expression is blue."; in operator <<()
35 friend std::ostream &operator <<(std::ostream &sout, GreenTag) in operator <<() argument
37 return sout << "This expression is green."; in operator <<()
/third_party/boost/boost/xpressive/detail/utility/
Dtracking_ptr.hpp209 …friend std::ostream &operator <<(std::ostream &sout, enable_reference_tracking<Derived> const &tha… in operator <<() argument
211 that.dump_(sout); in operator <<()
212 return sout; in operator <<()
320 void dump_(std::ostream &sout) const;
348 inline void enable_reference_tracking<Derived>::dump_(std::ostream &sout) const in dump_()
351 sout << "0x" << (void*)this << " cnt=" << this_.use_count()-1 << " refs={"; in dump_()
356 sout << "0x" << (void*)&**cur1 << ','; in dump_()
358 sout << "} deps={"; in dump_()
367 sout << "0x" << (void*)&*dep << ','; in dump_()
370 sout << '}'; in dump_()
/third_party/boost/libs/fusion/test/sequence/
Dsegmented_iterator_range.cpp26 ostream_fun(std::ostream &sout) in ostream_fun()
27 : sout_(sout) in ostream_fun()
61 std::stringstream sout; in process_tree() local
62 fusion::for_each(slice, ostream_fun(sout)); in process_tree()
63 BOOST_TEST((sout.str() == "100 e f 0 B ")); in process_tree()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DVulkanBarriersPerf.cpp117 std::ostringstream sout; in story() local
119 sout << RenderTestParams::story(); in story()
123 sout << "_buffer_copy"; in story()
127 sout << "_transfer"; in story()
131 sout << "_slowfs"; in story()
134 return sout.str(); in story()
/third_party/boost/libs/accumulators/test/
Dvalarray.cpp52 inline std::ostream &operator <<(std::ostream &sout, std::valarray<T> const &arr) in operator <<() argument
54 sout << '('; in operator <<()
57 sout << arr[i] << ','; in operator <<()
59 sout << ')' << std::endl; in operator <<()
60 return sout; in operator <<()
Dvector.cpp52 inline std::ostream &operator <<(std::ostream &sout, std::vector<T> const &arr) in operator <<() argument
54 sout << '('; in operator <<()
57 sout << arr[i] << ','; in operator <<()
59 sout << ')' << std::endl; in operator <<()
60 return sout; in operator <<()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/
DVulkanBarriersPerf.cpp107 std::ostringstream sout; in suffix() local
109 sout << RenderTestParams::suffix(); in suffix()
113 sout << "_transfer"; in suffix()
117 sout << "_slowfs"; in suffix()
120 return sout.str(); in suffix()
/third_party/boost/boost/phoenix/
Ddebug.hpp32 void display_expr(Expr const &expr, std::ostream &sout) in display_expr() argument
34 boost::proto::display_expr(expr,sout); in display_expr()
/third_party/boost/libs/fusion/test/algorithm/
Dsegmented_fold.cpp22 std::ostream* operator()(std::ostream* sout, T const& t) const in operator ()()
24 return &(*sout << t << " "); in operator ()()
/third_party/flutter/skia/tests/
DSkShaperJSONWriterTest.cpp142 std::string sout(out.bytesWritten(), 0);
143 out.copyTo(&sout[0]);
145 SkDebugf("%s", sout.c_str());
/third_party/skia/tests/
DSkShaperJSONWriterTest.cpp142 std::string sout(out.bytesWritten(), 0);
143 out.copyTo(&sout[0]);
145 SkDebugf("%s", sout.c_str());
/third_party/node/deps/npm/test/tap/
Dumask-lifecycle.js51 }, function (er, code, sout, serr) { argument
52 t.equal(sout, expected)
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl-no-opt/asm/frag/
Dscalar-select.spv14.asm.frag55 %sout = OpSelect %s %false %s0 %s1
56 OpStore %ss %sout
/third_party/skia/third_party/externals/spirv-cross/shaders-no-opt/asm/frag/
Dscalar-select.spv14.asm.frag55 %sout = OpSelect %s %false %s0 %s1
56 OpStore %ss %sout
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/asm/frag/
Dscalar-select.spv14.asm.frag55 %sout = OpSelect %s %false %s0 %s1
56 OpStore %ss %sout
/third_party/glslang/Test/baseResults/
Dspv.layoutNested.vert.out79 Name 62 "sout"
169 Decorate 62(sout) Flat
170 Decorate 62(sout) Location 0
236 62(sout): 61(ptr) Variable Output
/third_party/jsoncpp/src/lib_json/
Djson_writer.cpp880 int write(Value const& root, OStream* sout) JSONCPP_OVERRIDE;
923 int BuiltStyledStreamWriter::write(Value const& root, OStream* sout) { in write() argument
924 sout_ = sout; in write()
1247 OStringStream sout; in writeString() local
1249 writer->write(root, &sout); in writeString()
1251 return sout.str(); in writeString()
1254 OStream& operator<<(OStream& sout, Value const& root) { in operator <<() argument
1257 writer->write(root, &sout); in operator <<()
1259 return sout; in operator <<()

123