Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:HI_SURROGATE_MIN
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/
H
A
D
utf.cpp
100
uint32_t codePoint = d0 -
HI_SURROGATE_MIN
;
in CombineTwoU16()
111
if (d1 == 0 && d0 >=
HI_SURROGATE_MIN
&& d0 <= LO_SURROGATE_MAX) {
in ConvertUtf16ToMUtf8()
129
if (d0 <
HI_SURROGATE_MIN
|| d0 > HI_SURROGATE_MAX) {
in ConvertUtf16ToMUtf8()
359
if (length == 1 && mutf16[0] >=
HI_SURROGATE_MIN
&& // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
in Utf16ToMUtf8Size()
374
} else if (mutf16[i] <
HI_SURROGATE_MIN
|| mutf16[i] > HI_SURROGATE_MAX) {
in Utf16ToMUtf8Size()
H
A
D
utf.h
50
constexpr size_t
HI_SURROGATE_MIN
= 0xd800;
member
118
return val >=
HI_SURROGATE_MIN
&& val <= LO_SURROGATE_MAX;
in IsAvailableNextUtf16Code()
/arkcompiler/ets_runtime/ecmascript/base/
H
A
D
utf_helper.cpp
177
if (d1 == 0 && d0 >= utf::
HI_SURROGATE_MIN
&& d0 <= utf::LO_SURROGATE_MAX) {
in ConvertUtf16ToUtf8()
203
if (d0 < utf::
HI_SURROGATE_MIN
|| d0 > utf::HI_SURROGATE_MAX) {
in ConvertUtf16ToUtf8()
229
if (length == 1 && utf16[0] >= utf::
HI_SURROGATE_MIN
&& // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
in Utf16ToUtf8Size()
247
} else if (utf16[i] < utf::
HI_SURROGATE_MIN
|| utf16[i] > utf::HI_SURROGATE_MAX) {
in Utf16ToUtf8Size()
H
A
D
utf_helper.h
135
uint32_t codePoint = d0 - utf::
HI_SURROGATE_MIN
;
in CombineTwoU16()
Completed in 4 milliseconds