Searched refs:haystack (Results 1 – 6 of 6) sorted by relevance
/hardware/ti/omap3/dspbridge/inc/ |
D | csl.h | 218 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
D | csl.h | 219 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/ |
D | gtest-all.cc | 2718 bool IsSubstringPred(const char* needle, const char* haystack) { in IsSubstringPred() argument 2719 if (needle == NULL || haystack == NULL) in IsSubstringPred() 2720 return needle == haystack; in IsSubstringPred() 2722 return strstr(haystack, needle) != NULL; in IsSubstringPred() 2725 bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { in IsSubstringPred() argument 2726 if (needle == NULL || haystack == NULL) in IsSubstringPred() 2727 return needle == haystack; in IsSubstringPred() 2729 return wcsstr(haystack, needle) != NULL; in IsSubstringPred() 2735 const StringType& haystack) { in IsSubstringPred() argument 2736 return haystack.find(needle) != StringType::npos; in IsSubstringPred() [all …]
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
D | bcmutils.c | 809 bcmstrstr(const char *haystack, const char *needle) in bcmstrstr() argument 814 if ((haystack == NULL) || (needle == NULL)) in bcmstrstr() 815 return DISCARD_QUAL(haystack, char); in bcmstrstr() 818 len = strlen(haystack) - nlen + 1; in bcmstrstr() 821 if (memcmp(needle, &haystack[i], nlen) == 0) in bcmstrstr() 822 return DISCARD_QUAL(&haystack[i], char); in bcmstrstr()
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
D | bcmutils.h | 362 extern char *bcmstrstr(const char *haystack, const char *needle);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/ |
D | gtest.h | 19063 const char* needle, const char* haystack); 19066 const wchar_t* needle, const wchar_t* haystack); 19069 const char* needle, const char* haystack); 19072 const wchar_t* needle, const wchar_t* haystack); 19075 const ::std::string& needle, const ::std::string& haystack); 19078 const ::std::string& needle, const ::std::string& haystack); 19083 const ::std::wstring& needle, const ::std::wstring& haystack); 19086 const ::std::wstring& needle, const ::std::wstring& haystack);
|