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:cesu8_pos
(Results
1 - 2
of
2
) sorted by relevance
/third_party/jerryscript/jerry-core/lit/
H
A
D
lit-strings.c
816
const lit_utf8_byte_t *
cesu8_pos
= cesu8_string;
in lit_convert_cesu8_string_to_utf8_string()
local
827
while (
cesu8_pos
< cesu8_end_pos)
in lit_convert_cesu8_string_to_utf8_string()
830
lit_utf8_size_t code_unit_size = lit_read_code_unit_from_utf8 (
cesu8_pos
, &ch);
in lit_convert_cesu8_string_to_utf8_string()
842
memcpy (utf8_pos,
cesu8_pos
, code_unit_size);
in lit_convert_cesu8_string_to_utf8_string()
847
cesu8_pos
+= code_unit_size;
in lit_convert_cesu8_string_to_utf8_string()
852
JERRY_ASSERT (
cesu8_pos
== cesu8_end_pos);
in lit_convert_cesu8_string_to_utf8_string()
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-helpers-string.c
1241
const lit_utf8_byte_t *
cesu8_pos
= cesu8_str_p;
in ecma_substring_copy_to_utf8_buffer()
local
1249
lit_utf8_size_t code_unit_size = lit_read_code_unit_from_utf8 (
cesu8_pos
, &ch);
in ecma_substring_copy_to_utf8_buffer()
1256
if (((
cesu8_pos
+ code_unit_size) != cesu8_end_pos) && lit_is_code_point_utf16_high_surrogate (ch))
in ecma_substring_copy_to_utf8_buffer()
1259
lit_utf8_size_t next_ch_size = lit_read_code_unit_from_utf8 (
cesu8_pos
+ code_unit_size, &next_ch);
in ecma_substring_copy_to_utf8_buffer()
1270
cesu8_pos
+= next_ch_size;
in ecma_substring_copy_to_utf8_buffer()
1278
memcpy (utf8_pos,
cesu8_pos
, code_unit_size);
in ecma_substring_copy_to_utf8_buffer()
1284
memcpy (utf8_pos,
cesu8_pos
, code_unit_size);
in ecma_substring_copy_to_utf8_buffer()
1289
cesu8_pos
+= code_unit_size;
in ecma_substring_copy_to_utf8_buffer()
Completed in 8 milliseconds