Home
last modified time | relevance | path

Searched refs:codepoint2 (Results 1 - 4 of 4) sorted by relevance

/third_party/json/include/nlohmann/detail/input/
H A Dlexer.hpp336 const int codepoint2 = get_codepoint(); in scan_string() local
338 if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1)) in scan_string()
344 // check if codepoint2 is a low surrogate in scan_string()
345 if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF)) in scan_string()
352 + static_cast<unsigned int>(codepoint2) in scan_string()
/third_party/json/tests/src/
H A Dunit-unicode1.cpp72 const auto codepoint2 = 0xdc00u + ((cp - 0x10000u) & 0x3ffu); variable
73 json_text += codepoint_to_unicode(codepoint1) + codepoint_to_unicode(codepoint2);
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp6738 const int codepoint2 = get_codepoint();
6740 if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1))
6746 // check if codepoint2 is a low surrogate
6747 if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF))
6754 + static_cast<unsigned int>(codepoint2)
/third_party/json/single_include/nlohmann/
H A Djson.hpp7637 const int codepoint2 = get_codepoint();
7639 if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1))
7645 // check if codepoint2 is a low surrogate
7646 if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF))
7653 + static_cast<unsigned int>(codepoint2)

Completed in 45 milliseconds