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:UTF8_1B_MAX
(Results
1 - 10
of
10
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/base/
H
A
D
utf_helper.cpp
88
if (codepoint <=
UTF8_1B_MAX
) {
in UTF8Length()
195
if (d0 <=
UTF8_1B_MAX
) {
in ConvertUtf16ToUtf8()
242
} else if (utf16[i] <=
UTF8_1B_MAX
) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
in Utf16ToUtf8Size()
H
A
D
utf_helper.h
63
static constexpr uint8_t
UTF8_1B_MAX
= 0x7f;
member
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H
A
D
utf.h
66
constexpr uint8_t
UTF8_1B_MAX
= 0x7f;
member
H
A
D
utf.cpp
434
if (d0 <=
UTF8_1B_MAX
) {
in ConvertUtf16ToUtf8()
479
} else if (utf16[i] <=
UTF8_1B_MAX
) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
in Utf16ToUtf8Size()
/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
H
A
D
string.h
318
return data - 1U < utf::
UTF8_1B_MAX
;
in IsASCIICharacter()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
ecma_string.h
670
return data <= base::utf_helper::
UTF8_1B_MAX
;
1499
return data <= base::utf_helper::
UTF8_1B_MAX
;
in IsASCIICharacter()
/arkcompiler/runtime_core/static_core/libpandafile/
H
A
D
file_items.cpp
156
if (static_cast<uint8_t>(c) > utf::
UTF8_1B_MAX
) {
in StringItem()
/arkcompiler/ets_runtime/ecmascript/base/tests/
H
A
D
utf_helper_test.cpp
411
uint8_t utf8Value2[1] = {
UTF8_1B_MAX
};
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
mcr_circuit_builder.cpp
2113
return Int32UnsignedLessThan(Int32Sub(gate, Int32(1)), Int32(base::utf_helper::
UTF8_1B_MAX
));
in IsASCIICharacter()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H
A
D
builtins_string_stub_builder.cpp
1752
return Int32UnsignedLessThan(Int32Sub(data, Int32(1)), Int32(base::utf_helper::
UTF8_1B_MAX
));
in IsASCIICharacter()
Completed in 21 milliseconds