Home
last modified time | relevance | path

Searched refs:test_to (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/locale/test/
Dtest_utf.cpp69 void test_to(CharType const *s,unsigned codepoint) in test_to() function
135 test_to("\x7f",0x7f); in main()
136 test_to("\xc2\x80",0x80); in main()
137 test_to("\xdf\xbf",0x7ff); in main()
138 test_to("\xe0\xa0\x80",0x800); in main()
139 test_to("\xef\xbf\xbf",0xffff); in main()
140 test_to("\xf0\x90\x80\x80",0x10000); in main()
141 test_to("\xf4\x8f\xbf\xbf",0x10ffff); in main()
144 test_to("\xf4\x9f\x80\x80",illegal); // 11 0000 in main()
145 test_to("\xfb\xbf\xbf\xbf",illegal); // 3ff ffff in main()
[all …]
Dtest_codepage.cpp321 void test_to() in test_to() function
490 test_to<char>(); in main()
492 test_to<wchar_t>(); in main()
496 test_to<char16_t>(); in main()
502 test_to<char32_t>(); in main()
Dtest_codepage_converter.cpp51 bool test_to(boost::locale::util::base_converter &cvt,char const *s,unsigned codepoint) in test_to() function
79 #define TEST_TO(str,codepoint) TEST(test_to(*cvt,str,codepoint))