OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:u8cur
(Results
1 - 2
of
2
) sorted by null
/system/core/libutils/
Unicode.cpp
522
const uint8_t*
u8cur
= u8str;
local
526
while (
u8cur
< u8end) {
528
int u8charLen = utf8_codepoint_len(*
u8cur
);
529
uint32_t codepoint = utf8_to_utf32_codepoint(
u8cur
, u8charLen);
531
u8cur
+= u8charLen;
538
if (
u8cur
!= u8end) {
548
const uint8_t*
u8cur
= u8str;
local
551
while (
u8cur
< u8end) {
552
size_t u8len = utf8_codepoint_len(*
u8cur
);
553
uint32_t codepoint = utf8_to_utf32_codepoint(
u8cur
, u8len)
578
const uint8_t*
u8cur
= src;
local
[
all
...]
String16.cpp
63
const uint8_t*
u8cur
= (const uint8_t*) u8str;
local
65
const ssize_t u16len = utf8_to_utf16_length(
u8cur
, u8len);
70
const uint8_t* const u8end =
u8cur
+ u8len;
74
u8cur
= (const uint8_t*) u8str;
77
utf8_to_utf16(
u8cur
, u8len, u16str);
Completed in 626 milliseconds