Lines Matching +full:0 +full:x90

23 #define latest_rev 0
34 } while (0)
54 .str = {0xc2, 0xbc, 0x00},
55 .dec = {0xc2, 0xbc, 0x00},
60 .str = {0xc3, 0xa4, 0x00},
61 .dec = {0x61, 0xcc, 0x88, 0x00},
66 .str = {0xC7, 0x89, 0x00},
67 .dec = {0xC7, 0x89, 0x00},
71 .str = {0xCE, 0x87, 0x00},
72 .dec = {0xC2, 0xB7, 0x00}
78 .str = {0x41, 0xcc, 0x81, 0xcc, 0xa8, 0x0},
79 .dec = {0x41, 0xcc, 0xa8, 0xcc, 0x81, 0x0},
85 .str = {0xc3, 0xa4, 0xCC, 0xA8, 0x00},
87 .dec = {0x61, 0xCC, 0xA8, 0xcc, 0x88, 0x00},
100 .str = {0x41, 0x42, 0x62, 0x61, 0x00},
101 .ncf = {0x61, 0x62, 0x62, 0x61, 0x00},
111 .str = {0xc3, 0x9f, 0x00},
112 .ncf = {0x73, 0x73, 0x00},
117 .str = {0xC3, 0x85, 0x00},
118 .ncf = {0x61, 0xcc, 0x8a, 0x00},
120 /* Introduced by UTF-8.0.0. */
122 to upper-case. Before 8.0.0, Cherokee lowercase were
124 7.0.0 -> 8.0.0, but it is from UC. */
127 .str = {0xea, 0xad, 0xb0, 0x00},
128 .ncf = {0xe1, 0x8e, 0xa0, 0x00},
132 .str = {0xe1, 0x8f, 0xb8, 0x00},
133 .ncf = {0xe1, 0x8f, 0xb0, 0x00},
138 .str = {0xf0, 0x90, 0xb2, 0x83, 0x00},
139 .ncf = {0xf0, 0x90, 0xb3, 0x83, 0x00},
141 /* Introduced by UTF-9.0.0. */
145 .str = {0xf0, 0x90, 0x92, 0xb5, 0x00},
146 .ncf = {0xf0, 0x90, 0x93, 0x9d, 0x00},
151 .str = {0xea, 0x9e, 0xae, 0x00},
152 .ncf = {0xc9, 0xaa, 0x00},
154 /* Introduced by UTF-11.0.0. */
158 .str = {0xe1, 0xb2, 0x90, 0x00},
159 .ncf = {0xe1, 0x83, 0x90, 0x00},
176 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_nfdi()
179 int j = 0; in check_utf8_nfdi()
185 if (utf8cursor(&u8c, data, nfdi_test_data[i].str) < 0) in check_utf8_nfdi()
188 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdi()
190 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdi()
212 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_nfdicf()
215 int j = 0; in check_utf8_nfdicf()
221 if (utf8cursor(&u8c, data, nfdicf_test_data[i].str) < 0) in check_utf8_nfdicf()
224 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdicf()
226 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdicf()
238 struct unicode_map *table = utf8_load("12.1.0"); in check_utf8_comparisons()
246 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_comparisons()
256 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_comparisons()
271 /* Unicode 7.0.0 should be supported. */ in check_supported_versions()
272 test(utf8version_is_supported(7, 0, 0)); in check_supported_versions()
274 /* Unicode 9.0.0 should be supported. */ in check_supported_versions()
275 test(utf8version_is_supported(9, 0, 0)); in check_supported_versions()
281 test(!utf8version_is_supported(13, 0, 0)); in check_supported_versions()
282 test(!utf8version_is_supported(0, 0, 0)); in check_supported_versions()
288 failed_tests = 0; in init_test_ucd()
289 total_tests = 0; in init_test_ucd()
301 return 0; in init_test_ucd()