Lines Matching refs:three
24 String arg, argh, one, two, three, four; in test_to_hex() local
28 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex()
31 BOOST_CHECK ( one == three ); in test_to_hex()
34 one.clear (); two.clear (); three.clear (); four.clear (); in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
40 BOOST_CHECK ( one == three ); in test_to_hex()
49 String arg, argh, one, two, three, four; in test_to_hex_lower() local
53 boost::algorithm::hex_lower ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex_lower()
56 BOOST_CHECK ( one == three ); in test_to_hex_lower()
59 one.clear (); two.clear (); three.clear (); four.clear (); in test_to_hex_lower()
62 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex_lower()
65 BOOST_CHECK ( one == three ); in test_to_hex_lower()
75 String arg, argh, one, two, three, four; in test_from_hex_success() local
79 boost::algorithm::unhex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_from_hex_success()
82 BOOST_CHECK ( one == three ); in test_from_hex_success()
85 one.clear (); two.clear (); three.clear (); four.clear (); in test_from_hex_success()
88 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
93 boost::algorithm::to_lower( three ); in test_from_hex_success()
96 BOOST_CHECK ( one == three ); in test_from_hex_success()