Lines Matching defs:needle
59 // limit, we can fix the size of tables. For a needle longer than this limit,
130 // Latin1 needle.
133 // UC16 needle.
199 inline const void* MemrchrFill(const void* haystack, uint8_t needle,
202 return memrchr(haystack, needle, haystack_len);
206 if (haystack8[i] == needle) {
596 const Char* needle,
603 // For example, v_needle[0] would return the *last* character of the needle.
604 // So we're searching for the first instance of rev(needle) in rev(haystack)
605 stringsearch::Vector<const Char> v_needle(needle, needle_length, is_forward);
628 const char (&needle)[N]) {
631 reinterpret_cast<const uint8_t*>(needle), N - 1, 0, true);