Lines Matching refs:byte3
53 void check_utf8dump(bool success_expected, int byte1, int byte2, int byte3, int byte4);
55 void check_utf8dump(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -… in check_utf8dump() argument
62 CAPTURE(byte3) in check_utf8dump()
72 if (byte3 != -1) in check_utf8dump()
74 json_string += std::string(1, static_cast<char>(byte3)); in check_utf8dump()
140 void check_utf8string(bool success_expected, int byte1, int byte2, int byte3, int byte4);
143 void check_utf8string(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 =… in check_utf8string() argument
162 if (byte3 != -1) in check_utf8string()
164 CAPTURE(byte3) in check_utf8string()
165 json_string += std::string(1, static_cast<char>(byte3)); in check_utf8string()
222 for (int byte3 = 0x80; byte3 <= 0xBF; ++byte3) in skip() local
226 check_utf8string(true, byte1, byte2, byte3, byte4); in skip()
227 check_utf8dump(true, byte1, byte2, byte3, byte4); in skip()
261 for (int byte3 = 0x80; byte3 <= 0xBF; ++byte3) in skip() local
263 check_utf8string(false, byte1, byte2, byte3); in skip()
264 check_utf8dump(false, byte1, byte2, byte3); in skip()
282 for (int byte3 = 0x80; byte3 <= 0xBF; ++byte3) in skip() local
286 check_utf8string(false, byte1, byte2, byte3, byte4); in skip()
287 check_utf8dump(false, byte1, byte2, byte3, byte4); in skip()
300 for (int byte3 = 0x00; byte3 <= 0xFF; ++byte3) in skip() local
303 if (0x80 <= byte3 && byte3 <= 0xBF) in skip()
310 check_utf8string(false, byte1, byte2, byte3, byte4); in skip()
311 check_utf8dump(false, byte1, byte2, byte3, byte4); in skip()
324 for (int byte3 = 0x80; byte3 <= 0xBF; ++byte3) in skip() local
329 if (0x80 <= byte3 && byte3 <= 0xBF) in skip()
334 check_utf8string(false, byte1, byte2, byte3, byte4); in skip()
335 check_utf8dump(false, byte1, byte2, byte3, byte4); in skip()