Searched defs:IsValidCodePointIndex (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/ui/gfx/
H A Dutf16_indexing.cc12 bool IsValidCodePointIndex(const base::string16& s, size_t index) { function in namespace:gfx
22 // "IsValidCodePointIndex(s, i)".
27 delta += IsValidCodePointIndex(s, base++) ? 1 : 0;
29 delta -= IsValidCodePointIndex(s, pos++) ? 1 : 0;
43 offset -= IsValidCodePointIndex(s, pos++) ? 1 : 0;
45 offset += IsValidCodePointIndex(s, --pos) ? 1 : 0;
52 if (!IsValidCodePointIndex(s, pos))

Completed in 85 milliseconds