OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:utf8_pos
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/history/
snippet.cc
101
//
utf8_pos
: current offset in the utf8 string. This is modified and on return
108
int32_t*
utf8_pos
,
110
DCHECK(offset >= *
utf8_pos
&& offset <= utf8_length);
113
while (*
utf8_pos
< offset) {
114
U8_NEXT(utf8_string, *
utf8_pos
, utf8_length, wide_char);
121
// position to |*
utf8_pos
| and move by |count| characters. |count| can
123
void MoveByNGraphemes(icu::BreakIterator* bi, int count, size_t*
utf8_pos
) {
125
// being set at or following |*
utf8_pos
| is exploited here.
129
bi->isBoundary(*
utf8_pos
);
131
*
utf8_pos
= static_cast<size_t>(bi->current())
190
int32_t
utf8_pos
= 0;
local
[
all
...]
/external/chromium_org/chrome/browser/history/
snippet.cc
101
//
utf8_pos
: current offset in the utf8 string. This is modified and on return
108
int32_t*
utf8_pos
,
110
DCHECK(offset >= *
utf8_pos
&& offset <= utf8_length);
113
while (*
utf8_pos
< offset) {
114
U8_NEXT(utf8_string, *
utf8_pos
, utf8_length, wide_char);
121
// position to |*
utf8_pos
| and move by |count| characters. |count| can
123
void MoveByNGraphemes(icu::BreakIterator* bi, int count, size_t*
utf8_pos
) {
125
// being set at or following |*
utf8_pos
| is exploited here.
129
bi->isBoundary(*
utf8_pos
);
131
*
utf8_pos
= static_cast<size_t>(bi->current())
190
int32_t
utf8_pos
= 0;
local
[
all
...]
Completed in 124 milliseconds