Home
last modified time | relevance | path

Searched refs:DECODE_LEAD_LOW (Results 1 – 6 of 6) sorted by relevance

/ark/js_runtime/ecmascript/base/
Dutf_helper.cpp27 ASSERT((lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH) && in UTF16Decode()
29 …uint32_t cp = (lead - DECODE_LEAD_LOW) * DECODE_FIRST_FACTOR + (trail - DECODE_TRAIL_LOW) + DECODE… in UTF16Decode()
Dutf_helper.h25 static constexpr uint16_t DECODE_LEAD_LOW = 0xD800; variable
Djson_parser.h241 …if (UNLIKELY(*current_ > utf_helper::DECODE_LEAD_LOW && *current_ < utf_helper::DECODE_LEAD_HIGH && in SlowParseString()
/ark/js_runtime/ecmascript/builtins/
Dbuiltins_string_iterator.cpp67 if (position + 1 == len || first < base::utf_helper::DECODE_LEAD_LOW || in Next()
Dbuiltins_global.cpp236 if (cc < base::utf_helper::DECODE_LEAD_LOW || cc > base::utf_helper::DECODE_LEAD_HIGH) { in Encode()
450 base::utf_helper::DECODE_LEAD_LOW); // 10: means shift left by 10 digits in Decode()
Dbuiltins_string.cpp309 …if (first < base::utf_helper::DECODE_LEAD_LOW || first > base::utf_helper::DECODE_LEAD_HIGH || pos… in CodePointAt()