Home | History | Annotate | Download | only in url_request

Lines Matching refs:haystack

73 // Do a case-insensitive search through |haystack| for |needle|.
74 bool ContainsString(const std::string& haystack, const char* needle) {
76 std::search(haystack.begin(),
77 haystack.end(),
81 return it != haystack.end();