Home
last modified time | relevance | path

Searched refs:strout (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/algorithm/string/test/
Dconv_test.cpp39 string strout; in conv_test() local
40 to_lower_copy( back_inserter(strout), str1 ); in conv_test()
41 BOOST_CHECK( strout=="abcdefg 123 xxxyyyzzzz" ); in conv_test()
42 strout.clear(); in conv_test()
43 to_upper_copy( back_inserter(strout), str1 ); in conv_test()
44 BOOST_CHECK( strout=="ABCDEFG 123 XXXYYYZZZZ" ); in conv_test()
46 strout.clear(); in conv_test()
47 to_lower_copy( back_inserter(strout), "AbCdEfG 123 xxxYYYzZzZ" ); in conv_test()
48 BOOST_CHECK( strout=="abcdefg 123 xxxyyyzzzz" ); in conv_test()
49 strout.clear(); in conv_test()
[all …]
Dreplace_test.cpp69 string strout;\
70 Algo##_copy( back_inserter(strout), str1, Params );\
71 BOOST_CHECK( strout==Output ); \
219 string strout; in replace_range_test() local
221 back_inserter( strout ), in replace_range_test()
225 BOOST_CHECK( strout==string("1XXX3abc2") ); in replace_range_test()
243 string strout; in replace_range_test() local
245 back_inserter( strout ), in replace_range_test()
248 BOOST_CHECK( strout==string("13abc2") ); in replace_range_test()
261 string strout; in collection_comp_test() local
[all …]
Dregex_test.cpp127 string strout; in replace_test() local
128 replace_regex_copy( back_inserter(strout), str1, rx1, fmt1 ); in replace_test()
129 BOOST_CHECK( strout==string("123_A1C_xxxa23cXXXa456c321") ); in replace_test()
130 strout.clear(); in replace_test()
131 replace_all_regex_copy( back_inserter(strout), str1, rx1, fmt1 ); in replace_test()
132 BOOST_CHECK( strout==string("123_A1C_xxx_A23C_XXX_A456C_321") ); in replace_test()
133 strout.clear(); in replace_test()
134 erase_regex_copy( back_inserter(strout), str1, rx1 ); in replace_test()
135 BOOST_CHECK( strout==string("123xxxa23cXXXa456c321") ); in replace_test()
136 strout.clear(); in replace_test()
[all …]
/third_party/toybox/toys/other/
Dstat.c63 static void strout(char *val) in strout() function
71 strout(format_iso_time(toybuf+128, sizeof(toybuf)-128, ts)); in date_stat_format()
83 strout(str); in print_stat()
89 strout(lsm_get_context(TT.file, &context) != -1 ? context : "?"); in print_stat()
101 strout(t); in print_stat()
103 else if (type == 'G') strout(getgroupname(stat->st_gid)); in print_stat()
112 strout(mt->dir); in print_stat()
126 else if (type == 'U') strout(getusername(stat->st_uid)); in print_stat()
169 strout(s); in print_statfs()
175 strout(buf); in print_statfs()
[all …]
/third_party/boost/libs/spirit/classic/test/
Dtraverse_tests.cpp280 OSSTREAM strout; in generate_plain() local
281 strout in generate_plain()
288 traces.push_back(GETSTRING(strout)); in generate_plain()
298 OSSTREAM strout; in generate_unary() local
299 strout in generate_unary()
304 traces.push_back(GETSTRING(strout)); in generate_unary()
314 OSSTREAM strout; in generate_action() local
315 strout in generate_action()
320 traces.push_back(GETSTRING(strout)); in generate_action()
330 OSSTREAM strout; in generate_binary() local
[all …]