Home
last modified time | relevance | path

Searched refs:DECODE_LEAD_HIGH (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string_iterator.cpp69 first > base::utf_helper::DECODE_LEAD_HIGH) { in Next()
Dbuiltins_global.cpp240 if (cc < base::utf_helper::DECODE_LEAD_LOW || cc > base::utf_helper::DECODE_LEAD_HIGH) { in Encode()
Dbuiltins_string.cpp326 …if (first < base::utf_helper::DECODE_LEAD_LOW || first > base::utf_helper::DECODE_LEAD_HIGH || pos… in CodePointAt()
/arkcompiler/ets_runtime/ecmascript/base/
Dutf_helper.h26 static constexpr uint16_t DECODE_LEAD_HIGH = 0xDBFF; variable
Dutf_helper.cpp29 ASSERT((lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH) && in UTF16Decode()
37 return DECODE_LEAD_LOW <= ch && ch <= DECODE_LEAD_HIGH; in IsUTF16HighSurrogate()
Djson_parser.h254 … (UNLIKELY(*current_ >= utf_helper::DECODE_LEAD_LOW && *current_ <= utf_helper::DECODE_LEAD_HIGH && in SlowParseString()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dutf_helper_test.cpp98 EXPECT_TRUE(lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH); in HWTEST_F_L0()
104 EXPECT_TRUE(lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH); in HWTEST_F_L0()