• Home
  • Raw
  • Download

Lines Matching refs:three

37         std::list<char> one, two, three;  in test_to_hex()  local
41 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex()
43 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex()
46 one.clear (); two.clear (); three.clear (); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
52 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex()
59 std::list<char> one, two, three; in test_to_hex() local
63 boost::algorithm::hex ( arg.begin (), arg.end (), std::front_inserter ( three )); in test_to_hex()
65 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex()
69 one.clear (); two.clear (); three.clear (); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
75 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex()
90 std::list<char> one, two, three; in test_from_hex_success() local
94 boost::algorithm::unhex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_from_hex_success()
96 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_from_hex_success()
99 one.clear (); two.clear (); three.clear (); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
105 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_from_hex_success()
112 std::list<char> one, two, three; in test_from_hex_success() local
116 boost::algorithm::unhex ( arg.begin (), arg.end (), std::front_inserter ( three )); in test_from_hex_success()
118 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_from_hex_success()
122 one.clear (); two.clear (); three.clear (); in test_from_hex_success()
126 boost::algorithm::hex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_from_hex_success()
128 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_from_hex_success()