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:charaEncode
(Results
1 - 1
of
1
) sorted by relevance
/commonlibrary/ets_utils/js_api_module/url/test/
H
A
D
test_napi.cpp
94
auto
charaEncode
= static_cast<size_t>(wstr[i]);
in ReviseStr()
local
95
if (
charaEncode
< numOfAscii) {
in ReviseStr()
97
if (IsEscapeRange(
charaEncode
)) {
in ReviseStr()
98
output += reviseChar[
charaEncode
];
in ReviseStr()
102
} else if (
charaEncode
<= 0x000007FF) { // Convert the Unicode code into two bytes
in ReviseStr()
103
std::string output1 = reviseChar[0x000000C0 | (
charaEncode
/ 64)]; // 64:the first byte
in ReviseStr()
104
std::string output2 = reviseChar[numOfAscii | (
charaEncode
& 0x0000003F)];
in ReviseStr()
106
} else if ((
charaEncode
>= 0x0000E000) || (
charaEncode
<= 0x0000D7FF)) {
in ReviseStr()
107
std::string output1 = reviseChar[0x000000E0 | (
charaEncode
/ 409
in ReviseStr()
[all...]
Completed in 4 milliseconds