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:unicode
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/c_utils/base/src/
H
A
D
unicode_ex.cpp
24
/***************************************UTF8 and UTF16
unicode
**********************************************
37
**************************************UTF8 and UTF16
unicode
**********************************************/
239
uint32_t
unicode
= 0;
in Utf8ToUtf32CodePoint()
local
245
unicode
= src[UTF8_FIRST_BYTE_INDEX] & 0x1f;
in Utf8ToUtf32CodePoint()
246
Utf8ShiftAndMask(&
unicode
, src[UTF8_SECOND_BYTE_INDEX]);
in Utf8ToUtf32CodePoint()
247
return
unicode
;
in Utf8ToUtf32CodePoint()
249
unicode
= src[UTF8_FIRST_BYTE_INDEX] & 0x0f;
in Utf8ToUtf32CodePoint()
250
Utf8ShiftAndMask(&
unicode
, src[UTF8_SECOND_BYTE_INDEX]);
in Utf8ToUtf32CodePoint()
251
Utf8ShiftAndMask(&
unicode
, src[UTF8_THIRD_BYTE_INDEX]);
in Utf8ToUtf32CodePoint()
252
return
unicode
;
in Utf8ToUtf32CodePoint()
[all...]
/commonlibrary/ets_utils/platform/default/
H
A
D
util_helper.cpp
20
#include <
unicode
/ustring.h>
/commonlibrary/rust/ylong_json/src/
H
A
D
states.rs
296
// Parses
unicode
330
let
unicode
= match char::try_from(unicode1 as u32) {
in parse_unicode()
347
vec.extend_from_slice(
unicode
.encode_utf8(&mut [0; 4]).as_bytes());
in parse_unicode()
807
// 4.Illegal
unicode
characters.
in ut_parse_string()
Completed in 3 milliseconds