Lines Matching defs:byte1
32 void check_utf8dump(bool success_expected, int byte1, int byte2, int byte3, int byte4);
34 void check_utf8dump(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1)
39 CAPTURE(byte1)
44 json_string += std::string(1, static_cast<char>(byte1));
119 void check_utf8string(bool success_expected, int byte1, int byte2, int byte3, int byte4);
122 void check_utf8string(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1)
132 CAPTURE(byte1)
133 json_string += std::string(1, static_cast<char>(byte1));
197 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
205 check_utf8string(true, byte1, byte2, byte3, byte4);
206 check_utf8dump(true, byte1, byte2, byte3, byte4);
215 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
217 check_utf8string(false, byte1);
218 check_utf8dump(false, byte1);
224 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
228 check_utf8string(false, byte1, byte2);
229 check_utf8dump(false, byte1, byte2);
236 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
242 check_utf8string(false, byte1, byte2, byte3);
243 check_utf8dump(false, byte1, byte2, byte3);
251 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
265 check_utf8string(false, byte1, byte2, byte3, byte4);
266 check_utf8dump(false, byte1, byte2, byte3, byte4);
275 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
289 check_utf8string(false, byte1, byte2, byte3, byte4);
290 check_utf8dump(false, byte1, byte2, byte3, byte4);
299 for (int byte1 = 0xF0; byte1 <= 0xF0; ++byte1)
313 check_utf8string(false, byte1, byte2, byte3, byte4);
314 check_utf8dump(false, byte1, byte2, byte3, byte4);