HomeSort by relevance Sort by last modified time
    Searched refs:char_pos (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/strings/
string_util_unittest.cc 411 for (size_t char_pos = offset; char_pos < len; ++char_pos) {
412 char_ascii[char_pos] |= '\x80';
414 char_ascii[char_pos] &= ~'\x80';
426 for (size_t char_pos = offset; char_pos < len; ++char_pos) {
427 char16_ascii[char_pos] |= 0x80;
430 char16_ascii[char_pos] &= ~0x80
    [all...]
  /external/v8/src/
string-search.h 220 const SubjectChar* char_pos = reinterpret_cast<const SubjectChar*>( local
223 if (char_pos == NULL) return -1;
224 char_pos = AlignDown(char_pos, sizeof(SubjectChar));
225 pos = static_cast<int>(char_pos - subject.start());

Completed in 1337 milliseconds