HomeSort by relevance Sort by last modified time
    Searched refs:haystack (Results 76 - 100 of 155) sorted by null

1 2 34 5 6 7

  /external/bison/linux-lib/
string.h 441 /* Return the first occurrence of NEEDLE in HAYSTACK. */
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_string.h 142 util_strstr(const char *haystack, const char *needle)
144 const char *p = haystack;
  /external/chromium_org/v8/test/mjsunit/
regexp-static.js 131 var haystack = "foo";
134 haystack += "x";
138 haystack += "bx";
140 assertTrue(re.test(haystack), "$" + i + " setup");
  /external/mesa3d/src/gallium/auxiliary/util/
u_string.h 142 util_strstr(const char *haystack, const char *needle)
144 const char *p = haystack;
  /external/wpa_supplicant_8/src/utils/
os_none.c 226 char * os_strstr(const char *haystack, const char *needle)
  /hardware/ti/omap3/dspbridge/inc/
csl.h 208 * haystack: Ptr to string1.
214 * haystack is valid.
218 extern PSTR CSL_Strstr(IN CONST PSTR haystack, IN CONST PSTR needle);
  /hardware/ti/omap3/dspbridge/libbridge/inc/
csl.h 209 * haystack: Ptr to string1.
215 * haystack 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)
458 string HAYSTACK. Return NULL if NEEDLE is not found in HAYSTACK.
461 extern char * mbsstr (const char *haystack, const char *needle);
502 string HAYSTACK, using case-insensitive comparison.
504 strlen (haystack) < strlen (needle) !
506 extern char * mbscasestr (const char *haystack, const char *needle)
    [all...]
  /external/valgrind/main/coregrind/
m_libcbase.c 365 HChar* VG_(strstr) ( const HChar* haystack, const HChar* needle )
368 if (haystack == NULL)
372 if (haystack[0] == 0)
374 if (VG_(strncmp)(haystack, needle, n) == 0)
375 return (HChar*)haystack;
376 haystack++;
380 HChar* VG_(strcasestr) ( const HChar* haystack, const HChar* needle )
383 if (haystack == NULL)
387 if (haystack[0] == 0)
389 if (VG_(strncasecmp)(haystack, needle, n) == 0)
    [all...]
  /bionic/tests/
wchar_test.cpp 225 const wchar_t* haystack = L"matches hello world, not the second hello world"; local
230 ASSERT_EQ(haystack, wcsstr(haystack, empty_needle));
231 ASSERT_EQ(&haystack[10], wcsstr(haystack, good_needle));
232 ASSERT_EQ(NULL, wcsstr(haystack, bad_needle));
  /external/valgrind/main/exp-sgcheck/
h_intercepts.c 347 (const char* haystack, const char* needle); \
349 (const char* haystack, const char* needle) \
351 const HChar* h = haystack; \
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.h 48 char *internal_strstr(const char *haystack, const char *needle);
  /external/libsepol/include/sepol/policydb/
conditional.h 102 cond_node_t * needle, cond_node_t * haystack,
  /bionic/libc/bionic/
ndk_cruft.cpp 229 extern "C" wchar_t* wcswcs(wchar_t* haystack, wchar_t* needle) {
230 return wcsstr(haystack, needle);
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
test.js 148 function expectContains(needle, haystack, additionalInfo) {
149 if (haystack.indexOf(needle) === -1) {
152 message += 'Expected to find "' + needle + '" in "' + haystack + '".';
155 message = 'OK, "' + needle + '" in "' + haystack + '".';
  /external/chromium_org/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest.h     [all...]
  /external/chromium_org/third_party/webrtc/base/
stringutils.h 93 inline const wchar_t* strstr(const wchar_t* haystack, const wchar_t* needle) {
94 return wcsstr(haystack, needle);
  /external/gtest/include/gtest/
gtest.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest.h     [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h     [all...]
  /external/valgrind/main/include/
pub_tool_libcbase.h 97 extern HChar* VG_(strstr) ( const HChar* haystack, const HChar* needle );
98 extern HChar* VG_(strcasestr) ( const HChar* haystack, const HChar* needle );
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest.h     [all...]
  /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):
312 while l and not haystack.endswith(needle[:l]):

Completed in 1463 milliseconds

1 2 34 5 6 7