OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsValidCodePointIndex
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ui/base/text/
utf16_indexing.cc
12
bool
IsValidCodePointIndex
(const string16& s, size_t index) {
22
// "
IsValidCodePointIndex
(s, i)".
27
delta +=
IsValidCodePointIndex
(s, base++) ? 1 : 0;
29
delta -=
IsValidCodePointIndex
(s, pos++) ? 1 : 0;
41
offset -=
IsValidCodePointIndex
(s, pos++) ? 1 : 0;
43
offset +=
IsValidCodePointIndex
(s, --pos) ? 1 : 0;
50
if (!
IsValidCodePointIndex
(s, pos))
utf16_indexing.h
15
UI_EXPORT bool
IsValidCodePointIndex
(const string16& s, size_t index);
utf16_indexing_unittest.cc
16
EXPECT_EQ(i != the_invalid_index,
IsValidCodePointIndex
(s, i));
/external/chromium_org/ui/gfx/
render_text_linux.cc
274
if (!ui::
IsValidCodePointIndex
(text(), position))
render_text_win.cc
440
return ui::
IsValidCodePointIndex
(text(), position) &&
[
all
...]
Completed in 3523 milliseconds