HomeSort by relevance Sort by last modified time
    Searched refs:needle (Results 51 - 75 of 158) sorted by null

1 23 4 5 6 7

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
string.h 62 extern char* strcasestr(const char *haystack, const char *needle);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
string.h 62 extern char* strcasestr(const char *haystack, const char *needle);
  /external/bison/darwin-lib/
string.h 441 /* Return the first occurrence of NEEDLE in HAYSTACK. */
    [all...]
  /external/bison/linux-lib/
string.h 441 /* Return the first occurrence of NEEDLE in HAYSTACK. */
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/tests/
clientinfo_unittest.cpp 682 const char *const needle = "GLX_ARB_create_context"; local
683 const unsigned len = strlen(needle);
686 char *match = strstr(haystack, needle);
708 const char *const needle = "GLX_ARB_create_context_profile"; local
709 const unsigned len = strlen(needle);
712 char *match = strstr(haystack, needle);
  /external/mesa3d/src/glx/tests/
clientinfo_unittest.cpp 682 const char *const needle = "GLX_ARB_create_context"; local
683 const unsigned len = strlen(needle);
686 char *match = strstr(haystack, needle);
708 const char *const needle = "GLX_ARB_create_context_profile"; local
709 const unsigned len = strlen(needle);
712 char *match = strstr(haystack, 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...]
  /libcore/luni/src/main/java/libcore/icu/
TimeZoneNames.java 119 String[] needle = new String[] { id }; local
120 int index = Arrays.binarySearch(zoneStrings, needle, ZONE_STRINGS_COMPARATOR);
  /external/wpa_supplicant_8/src/utils/
os_none.c 215 char * os_strstr(const char *haystack, const char *needle)
os_internal.c 455 char * os_strstr(const char *haystack, const char *needle)
457 size_t len = os_strlen(needle);
459 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/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 166 char *internal_strstr(const char *haystack, const char *needle) {
169 uptr len2 = internal_strlen(needle);
172 if (internal_memcmp(haystack + pos, needle, len2) == 0)
sanitizer_libc.h 45 char *internal_strstr(const char *haystack, const char *needle);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 295 # Given 'haystack', see if any prefix of 'needle' is at its end. This
310 def find_prefix_at_end (haystack, needle):
311 l = len(needle) - 1
312 while l and not haystack.endswith(needle[:l]):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 295 # Given 'haystack', see if any prefix of 'needle' is at its end. This
310 def find_prefix_at_end (haystack, needle):
311 l = len(needle) - 1
312 while l and not haystack.endswith(needle[:l]):
  /external/valgrind/main/exp-sgcheck/
h_intercepts.c 319 (void* haystack, void* needle); \
321 (void* haystack, void* needle) \
324 UChar* n = (UChar*)needle; \
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender_unittest.cc 47 // Returns the number of times that |needle| appears in |haystack| without
49 int CountOccurences(const std::string& haystack, const std::string& needle) {
51 for (size_t pos = haystack.find(needle);
53 pos = haystack.find(needle, pos + needle.length())) {
  /external/libsepol/include/sepol/policydb/
conditional.h 102 cond_node_t * needle, cond_node_t * haystack,
  /bionic/tests/
dlfcn_test.cpp 27 #define ASSERT_SUBSTR(needle, haystack) \
28 ASSERT_PRED_FORMAT2(::testing::IsSubstring, needle, haystack)
  /external/chromium/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/chromium_org/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils.h 110 inline const wchar_t* strstr(const wchar_t* haystack, const wchar_t* needle) {
111 return wcsstr(haystack, needle);

Completed in 897 milliseconds

1 23 4 5 6 7