Lines Matching defs:pos
422 const uint8_t* pos = subject_start;
424 pos = reinterpret_cast<const uint8_t*>(
425 memchr(pos, pattern, subject_end - pos));
426 if (pos == nullptr) return;
427 indices->push_back(static_cast<int>(pos - subject_start));
428 pos++;
439 for (const base::uc16* pos = subject_start; pos < subject_end && limit > 0;
440 pos++) {
441 if (*pos == pattern) {
442 indices->push_back(static_cast<int>(pos - subject_start));