Lines Matching refs:haystack

152 grapheme_strrpos_utf16(unsigned char *haystack, int32_t haystack_len, unsigned char*needle, int32_t…  in grapheme_strrpos_utf16()  argument
165 … intl_convert_utf8_to_utf16(&uhaystack, &uhaystack_len, (char *) haystack, haystack_len, &status ); in grapheme_strrpos_utf16()
286 grapheme_strpos_utf16(unsigned char *haystack, int32_t haystack_len, unsigned char*needle, int32_t … in grapheme_strpos_utf16() argument
302 intl_convert_utf8_to_utf16(&uhaystack, &uhaystack_len, (char *) haystack, haystack_len, &status ); in grapheme_strpos_utf16()
460 grapheme_memnstr_grapheme(UBreakIterator *bi, UChar *haystack, UChar *needle, int32_t needle_len, U… in grapheme_memnstr_grapheme() argument
462 UChar *p = haystack; in grapheme_memnstr_grapheme()
478 ubrk_setText (bi, haystack, (end - haystack) + needle_len, &status); in grapheme_memnstr_grapheme()
480 if ( ubrk_isBoundary (bi, (p - haystack) + needle_len) ) { in grapheme_memnstr_grapheme()
483 grapheme_offset = grapheme_count_graphemes(bi, haystack, (p - haystack)); in grapheme_memnstr_grapheme()
570 grapheme_strrpos_ascii(unsigned char *haystack, int32_t haystack_len, unsigned char *needle, int32_… in grapheme_strrpos_ascii() argument
575 p = haystack + offset; in grapheme_strrpos_ascii()
576 e = haystack + haystack_len - needle_len; in grapheme_strrpos_ascii()
578 p = haystack; in grapheme_strrpos_ascii()
580 e = haystack + haystack_len - needle_len; in grapheme_strrpos_ascii()
582 e = haystack + haystack_len + offset; in grapheme_strrpos_ascii()