Searched refs:needle (Results 1 - 6 of 6) sorted by relevance

/hardware/ti/omap3/dspbridge/inc/
H A Dcsl.h209 * needle: Ptr to substring to catch.
215 * needle is valid.
218 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
/hardware/ti/omap3/dspbridge/libbridge/inc/
H A Dcsl.h210 * needle: Ptr to substring to catch.
216 * needle is valid.
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/
H A Dgtest-all.cc2714 // This group of overloaded functions return true iff needle is a
2718 bool IsSubstringPred(const char* needle, const char* haystack) { argument
2719 if (needle == NULL || haystack == NULL)
2720 return needle == haystack;
2722 return strstr(haystack, needle) != NULL;
2725 bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { argument
2726 if (needle == NULL || haystack == NULL)
2727 return needle == haystack;
2729 return wcsstr(haystack, needle) != NULL;
2734 bool IsSubstringPred(const StringType& needle, argument
2744 IsSubstringImpl( bool expected_to_be_substring, const char* needle_expr, const char* haystack_expr, const StringType& needle, const StringType& haystack) argument
2767 IsSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack) argument
2773 IsSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack) argument
2779 IsNotSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack) argument
2785 IsNotSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack) argument
2791 IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack) argument
2797 IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack) argument
2804 IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack) argument
2810 IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack) argument
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c807 /* return pointer to location of substring 'needle' in 'haystack' */
809 bcmstrstr(const char *haystack, const char *needle) argument
814 if ((haystack == NULL) || (needle == NULL))
817 nlen = strlen(needle);
821 if (memcmp(needle, &haystack[i], nlen) == 0)
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h362 extern char *bcmstrstr(const char *haystack, const char *needle);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h19055 // themselves. They check whether needle is a substring of haystack
19059 // The {needle,haystack}_expr arguments are the stringified
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, cons
[all...]

Completed in 597 milliseconds