HomeSort by relevance Sort by last modified time
    Searched refs:needle (Results 26 - 50 of 92) sorted by null

12 3 4

  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
string.h 62 extern char* strcasestr(const char *haystack, const char *needle);
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 800 // themselves. They check whether needle is a substring of haystack
804 // The {needle,haystack}_expr arguments are the stringified
808 const char* needle, const char* haystack);
811 const wchar_t* needle, const wchar_t* haystack);
814 const char* needle, const char* haystack);
817 const wchar_t* needle, const wchar_t* haystack);
821 const ::std::string& needle, const ::std::string& haystack);
824 const ::std::string& needle, const ::std::string& haystack);
830 const ::std::wstring& needle, const ::std::wstring& haystack);
833 const ::std::wstring& needle, const ::std::wstring& haystack)
    [all...]
gtest.cc     [all...]
  /external/gtest/include/gtest/
gtest.h 846 // themselves. They check whether needle is a substring of haystac
    [all...]
  /external/wpa_supplicant/
os_none.c 210 char * os_strstr(const char *haystack, const char *needle)
os_internal.c 413 char * os_strstr(const char *haystack, const char *needle)
415 size_t len = os_strlen(needle);
417 if (os_strncmp(haystack, needle, len) == 0)
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_none.c 216 char * os_strstr(const char *haystack, const char *needle)
os_internal.c 438 char * os_strstr(const char *haystack, const char *needle)
440 size_t len = os_strlen(needle);
442 if (os_strncmp(haystack, needle, len) == 0)
  /external/wpa_supplicant_8/src/utils/
os_none.c 216 char * os_strstr(const char *haystack, const char *needle)
os_internal.c 443 char * os_strstr(const char *haystack, const char *needle)
445 size_t len = os_strlen(needle);
447 if (os_strncmp(haystack, needle, len) == 0)
  /hardware/ti/omap3/dspbridge/inc/
csl.h 209 * 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/
csl.h 210 * needle: Ptr to substring to catch.
216 * needle is valid.
219 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 69 /* Return the first occurrence of NEEDLE in HAYSTACK. */
337 char *strstr (const char *haystack, const char *needle)
355 /* Find the first occurrence of NEEDLE in HAYSTACK, using case-insensitive
362 extern char *strcasestr (const char *haystack, const char *needle)
457 /* Find the first occurrence of the character string NEEDLE in the character
458 string HAYSTACK. Return NULL if NEEDLE is not found in HAYSTACK.
461 extern char * mbsstr (const char *haystack, const char *needle);
501 /* Find the first occurrence of the character string NEEDLE in the character
504 strlen (haystack) < strlen (needle) !
506 extern char * mbscasestr (const char *haystack, const char *needle);
    [all...]
  /external/bluetooth/glib/glib/
gstrfuncs.h 116 const gchar *needle);
118 const gchar *needle);
121 const gchar *needle);
gstrfuncs.c     [all...]
  /external/gtest/src/
gtest.cc     [all...]
  /external/valgrind/main/coregrind/
m_libcbase.c 311 Char* VG_(strstr) ( const Char* haystack, Char* needle )
316 n = VG_(strlen)(needle);
320 if (VG_(strncmp)(haystack, needle, n) == 0)
326 Char* VG_(strcasestr) ( const Char* haystack, Char* needle )
331 n = VG_(strlen)(needle);
335 if (VG_(strncasecmp)(haystack, needle, n) == 0)
  /external/valgrind/main/exp-ptrcheck/
h_intercepts.c 319 (void* haystack, void* needle); \
321 (void* haystack, void* needle) \
324 UChar* n = (UChar*)needle; \
  /external/chromium/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h     [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h     [all...]
  /external/valgrind/main/include/
pub_tool_libcbase.h 93 extern Char* VG_(strstr) ( const Char* haystack, Char* needle );
94 extern Char* VG_(strcasestr) ( const Char* haystack, Char* needle );
  /bootable/recovery/edify/
expr.c 223 char* needle = Evaluate(state, argv[0]); local
224 if (needle == NULL) return NULL;
227 free(needle);
231 char* result = strdup(strstr(haystack, needle) ? "t" : "");
232 free(needle);
  /external/chromium/testing/gtest/src/
gtest.cc     [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc     [all...]

Completed in 1192 milliseconds

12 3 4