Lines Matching full:algorithm
11 #include <boost/algorithm/hex.hpp>
12 #include <boost/algorithm/string/case_conv.hpp>
26 boost::algorithm::hex ( *p, std::back_inserter ( one )); in test_to_hex()
27 boost::algorithm::hex ( arg, std::back_inserter ( two )); in test_to_hex()
28 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex()
29 four = boost::algorithm::hex ( arg ); in test_to_hex()
35 boost::algorithm::unhex ( argh.c_str (), std::back_inserter ( one )); in test_to_hex()
36 boost::algorithm::unhex ( argh, std::back_inserter ( two )); in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
38 four = boost::algorithm::unhex ( argh ); in test_to_hex()
51 boost::algorithm::hex_lower ( *p, std::back_inserter ( one )); in test_to_hex_lower()
52 boost::algorithm::hex_lower ( arg, std::back_inserter ( two )); in test_to_hex_lower()
53 boost::algorithm::hex_lower ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex_lower()
54 four = boost::algorithm::hex_lower ( arg ); in test_to_hex_lower()
60 boost::algorithm::unhex ( argh.c_str (), std::back_inserter ( one )); in test_to_hex_lower()
61 boost::algorithm::unhex ( argh, std::back_inserter ( two )); in test_to_hex_lower()
62 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex_lower()
63 four = boost::algorithm::unhex ( argh ); in test_to_hex_lower()
77 boost::algorithm::unhex ( *p, std::back_inserter ( one )); in test_from_hex_success()
78 boost::algorithm::unhex ( arg, std::back_inserter ( two )); in test_from_hex_success()
79 boost::algorithm::unhex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_from_hex_success()
80 four = boost::algorithm::unhex ( arg ); in test_from_hex_success()
86 boost::algorithm::hex ( argh.c_str (), std::back_inserter ( one )); in test_from_hex_success()
87 boost::algorithm::hex ( argh, std::back_inserter ( two )); in test_from_hex_success()
88 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
89 four = boost::algorithm::hex ( argh ); in test_from_hex_success()
90 boost::algorithm::to_lower( arg ); in test_from_hex_success()
91 boost::algorithm::to_lower( one ); in test_from_hex_success()
92 boost::algorithm::to_lower( two ); in test_from_hex_success()
93 boost::algorithm::to_lower( three ); in test_from_hex_success()
94 boost::algorithm::to_lower( four ); in test_from_hex_success()
110 try { boost::algorithm::unhex ( *p, std::back_inserter ( one )); } in test_from_hex_failure()
111 catch ( const boost::algorithm::hex_decode_error & /*ex*/ ) { num_catches++; } in test_from_hex_failure()
112 try { boost::algorithm::unhex ( arg, std::back_inserter ( one )); } in test_from_hex_failure()
113 catch ( const boost::algorithm::hex_decode_error & /*ex*/ ) { num_catches++; } in test_from_hex_failure()
114 try { boost::algorithm::unhex ( arg.begin (), arg.end (), std::back_inserter ( one )); } in test_from_hex_failure()
115 catch ( const boost::algorithm::hex_decode_error & /*ex*/ ) { num_catches++; } in test_from_hex_failure()