Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dutf.cpp373 (trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH)); in UTF16Decode()
419 if (d1 == 0 && d0 >= DECODE_LEAD_LOW && d0 <= DECODE_TRAIL_HIGH) { in ConvertUtf16ToUtf8()
448 if (d1 < DECODE_TRAIL_LOW || d1 > DECODE_TRAIL_HIGH) { in ConvertUtf16ToUtf8()
469 utf16[0] <= DECODE_TRAIL_HIGH) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
489 utf16[i + 1] <= DECODE_TRAIL_HIGH) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
H A Dutf.h56 constexpr uint16_t DECODE_TRAIL_HIGH = 0xDFFF; member
166 return val >= DECODE_LEAD_LOW && val <= DECODE_TRAIL_HIGH; in IsAvailableNextUtf16Code()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_string_iterator.cpp84 if (second < base::utf_helper::DECODE_TRAIL_LOW || second > base::utf_helper::DECODE_TRAIL_HIGH) { in NextInternal()
H A Dbuiltins_global.h212 return base::utf_helper::DECODE_TRAIL_LOW <= ch && ch <= base::utf_helper::DECODE_TRAIL_HIGH; in IsUTF16LowSurrogate()
H A Dbuiltins_string.h301 return base::utf_helper::DECODE_TRAIL_LOW <= ch && ch <= base::utf_helper::DECODE_TRAIL_HIGH; in IsUTF16LowSurrogate()
H A Dbuiltins_global.cpp263 if (cc >= base::utf_helper::DECODE_TRAIL_LOW && cc <= base::utf_helper::DECODE_TRAIL_HIGH) { in Encode()
286 if (kc < base::utf_helper::DECODE_TRAIL_LOW || kc > base::utf_helper::DECODE_TRAIL_HIGH) { in Encode()
H A Dbuiltins_string.cpp324 if (second < base::utf_helper::DECODE_TRAIL_LOW || second > base::utf_helper::DECODE_TRAIL_HIGH) { in CodePointAt()
/arkcompiler/ets_runtime/ecmascript/base/
H A Dutf_helper.h47 static constexpr uint16_t DECODE_TRAIL_HIGH = 0xDFFF; member
H A Dutf_helper.cpp31 (trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH)); in UTF16Decode()
43 return DECODE_TRAIL_LOW <= ch && ch <= DECODE_TRAIL_HIGH; in IsUTF16LowSurrogate()
/arkcompiler/ets_runtime/ecmascript/base/tests/
H A Dutf_helper_test.cpp75 EXPECT_TRUE(trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH); in HWTEST_F_L0()
81 EXPECT_TRUE(trail >= DECODE_TRAIL_LOW && trail <= DECODE_TRAIL_HIGH); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_string_stub_builder.cpp273 Int32UnsignedGreaterThan(second, Int32(base::utf_helper::DECODE_TRAIL_HIGH))); in CodePointAt()

Completed in 18 milliseconds