Lines Matching +full:0 +full:x90
21 #define UTF8_LATEST UNICODE_AGE(12, 1, 0)
32 } while (0)
52 .str = {0xc2, 0xbc, 0x00},
53 .dec = {0xc2, 0xbc, 0x00},
58 .str = {0xc3, 0xa4, 0x00},
59 .dec = {0x61, 0xcc, 0x88, 0x00},
64 .str = {0xC7, 0x89, 0x00},
65 .dec = {0xC7, 0x89, 0x00},
69 .str = {0xCE, 0x87, 0x00},
70 .dec = {0xC2, 0xB7, 0x00}
76 .str = {0x41, 0xcc, 0x81, 0xcc, 0xa8, 0x0},
77 .dec = {0x41, 0xcc, 0xa8, 0xcc, 0x81, 0x0},
83 .str = {0xc3, 0xa4, 0xCC, 0xA8, 0x00},
85 .dec = {0x61, 0xCC, 0xA8, 0xcc, 0x88, 0x00},
98 .str = {0x41, 0x42, 0x62, 0x61, 0x00},
99 .ncf = {0x61, 0x62, 0x62, 0x61, 0x00},
109 .str = {0xc3, 0x9f, 0x00},
110 .ncf = {0x73, 0x73, 0x00},
115 .str = {0xC3, 0x85, 0x00},
116 .ncf = {0x61, 0xcc, 0x8a, 0x00},
118 /* Introduced by UTF-8.0.0. */
120 to upper-case. Before 8.0.0, Cherokee lowercase were
122 7.0.0 -> 8.0.0, but it is from UC. */
125 .str = {0xea, 0xad, 0xb0, 0x00},
126 .ncf = {0xe1, 0x8e, 0xa0, 0x00},
130 .str = {0xe1, 0x8f, 0xb8, 0x00},
131 .ncf = {0xe1, 0x8f, 0xb0, 0x00},
136 .str = {0xf0, 0x90, 0xb2, 0x83, 0x00},
137 .ncf = {0xf0, 0x90, 0xb3, 0x83, 0x00},
139 /* Introduced by UTF-9.0.0. */
143 .str = {0xf0, 0x90, 0x92, 0xb5, 0x00},
144 .ncf = {0xf0, 0x90, 0x93, 0x9d, 0x00},
149 .str = {0xea, 0x9e, 0xae, 0x00},
150 .ncf = {0xc9, 0xaa, 0x00},
152 /* Introduced by UTF-11.0.0. */
156 .str = {0xe1, 0xb2, 0x90, 0x00},
157 .ncf = {0xe1, 0x83, 0x90, 0x00},
178 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_nfdi()
181 int j = 0; in check_utf8_nfdi()
188 if (utf8cursor(&u8c, um, UTF8_NFDI, nfdi_test_data[i].str) < 0) in check_utf8_nfdi()
191 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdi()
193 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdi()
207 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_nfdicf()
210 int j = 0; in check_utf8_nfdicf()
219 nfdicf_test_data[i].str) < 0) in check_utf8_nfdicf()
222 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdicf()
224 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdicf()
237 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_comparisons()
247 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_comparisons()
260 /* Unicode 7.0.0 should be supported. */ in check_supported_versions()
261 test(utf8version_is_supported(um, UNICODE_AGE(7, 0, 0))); in check_supported_versions()
263 /* Unicode 9.0.0 should be supported. */ in check_supported_versions()
264 test(utf8version_is_supported(um, UNICODE_AGE(9, 0, 0))); in check_supported_versions()
270 test(!utf8version_is_supported(um, UNICODE_AGE(13, 0, 0))); in check_supported_versions()
271 test(!utf8version_is_supported(um, UNICODE_AGE(0, 0, 0))); in check_supported_versions()
279 failed_tests = 0; in init_test_ucd()
280 total_tests = 0; in init_test_ucd()
299 return 0; in init_test_ucd()