Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string_iterator.cpp79 … if (second < base::utf_helper::DECODE_TRAIL_LOW || second > base::utf_helper::DECODE_TRAIL_HIGH) { in Next()
Dbuiltins_global.cpp226 … if (cc >= base::utf_helper::DECODE_TRAIL_LOW && cc <= base::utf_helper::DECODE_TRAIL_HIGH) { in Encode()
248 … if (kc < base::utf_helper::DECODE_TRAIL_LOW || kc > base::utf_helper::DECODE_TRAIL_HIGH) { in Encode()
Dbuiltins_string.cpp330 … if (second < base::utf_helper::DECODE_TRAIL_LOW || second > base::utf_helper::DECODE_TRAIL_HIGH) { in CodePointAt()
/arkcompiler/ets_runtime/ecmascript/base/
Dutf_helper.h28 static constexpr uint16_t DECODE_TRAIL_HIGH = 0xDFFF; variable
Dutf_helper.cpp30 (trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH)); in UTF16Decode()
42 return DECODE_TRAIL_LOW <= ch && ch <= DECODE_TRAIL_HIGH; in IsUTF16LowSurrogate()
Djson_parser.h256 *(current_ + 1) <= utf_helper::DECODE_TRAIL_HIGH)) { in SlowParseString()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dutf_helper_test.cpp99 EXPECT_TRUE(trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH); in HWTEST_F_L0()
105 EXPECT_TRUE(trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH); in HWTEST_F_L0()