Home
last modified time | relevance | path

Searched refs:DECODE_LEAD_HIGH (Results 1 - 11 of 11) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dutf.cpp372 ASSERT((lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH) && in UTF16Decode()
442 if (d0 < DECODE_LEAD_LOW || d0 > DECODE_LEAD_HIGH) { in ConvertUtf16ToUtf8()
484 } else if (utf16[i] < DECODE_LEAD_LOW || utf16[i] > DECODE_LEAD_HIGH) { in Utf16ToUtf8Size()
582 return lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH; in IsUTF16SurrogatePair()
H A Dutf.h54 constexpr uint16_t DECODE_LEAD_HIGH = 0xDBFF; member
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_string_iterator.cpp69 first > base::utf_helper::DECODE_LEAD_HIGH) { in NextInternal()
H A Dbuiltins_global.h207 return base::utf_helper::DECODE_LEAD_LOW <= ch && ch <= base::utf_helper::DECODE_LEAD_HIGH; in IsUTF16HighSurrogate()
H A Dbuiltins_string.h297 return base::utf_helper::DECODE_LEAD_LOW <= ch && ch <= base::utf_helper::DECODE_LEAD_HIGH; in IsUTF16HighSurrogate()
H A Dbuiltins_global.cpp277 if (cc < base::utf_helper::DECODE_LEAD_LOW || cc > base::utf_helper::DECODE_LEAD_HIGH) { in Encode()
H A Dbuiltins_string.cpp320 if (first < base::utf_helper::DECODE_LEAD_LOW || first > base::utf_helper::DECODE_LEAD_HIGH || pos + 1 == thisLen) { in CodePointAt()
/arkcompiler/ets_runtime/ecmascript/base/
H A Dutf_helper.h45 static constexpr uint16_t DECODE_LEAD_HIGH = 0xDBFF; member
H A Dutf_helper.cpp30 ASSERT((lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH) && in UTF16Decode()
38 return DECODE_LEAD_LOW <= ch && ch <= DECODE_LEAD_HIGH; in IsUTF16HighSurrogate()
/arkcompiler/ets_runtime/ecmascript/base/tests/
H A Dutf_helper_test.cpp74 EXPECT_TRUE(lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH); in HWTEST_F_L0()
80 EXPECT_TRUE(lead >= DECODE_LEAD_LOW && lead <= DECODE_LEAD_HIGH); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_string_stub_builder.cpp266 .Or(Int32UnsignedGreaterThan(first, Int32(base::utf_helper::DECODE_LEAD_HIGH))) in CodePointAt()

Completed in 19 milliseconds