/external/webkit/Source/JavaScriptCore/wtf/ |
DateMath.cpp | 549 const char *haystack = "janfebmaraprmayjunjulaugsepoctnovdec"; local 550 const char *str = strstr(haystack, needle); 552 int position = static_cast<int>(str - haystack); [all...] |
/external/libvpx/examples/includes/geshi/ |
geshi.php | 162 function stripos($haystack, $needle, $offset = null) { 164 $haystack = substr($haystack, $offset); variable 166 if (preg_match('/'. preg_quote($needle, '/') . '/', $haystack, $match, PREG_OFFSET_CAPTURE)) { 176 function stripos($haystack, $needle, $offset = null) { 177 if (preg_match('/'. preg_quote($needle, '/') . '/', $haystack, $match, PREG_OFFSET_CAPTURE, $offset)) { [all...] |
/external/valgrind/main/memcheck/ |
mc_replace_strmem.c | 1008 (void* haystack, void* needle); \ 1010 (void* haystack, void* needle) \ 1012 UChar* h = (UChar*)haystack; \ [all...] |
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_stdinc.h | 433 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_stdinc.h | 433 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_stdinc.h | 433 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_stdinc.h | 433 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
httpcommon.cc | 61 const char* const haystack[], size_t max_index) { 63 if (_stricmp(needle.c_str(), haystack[index]) == 0) {
|
/external/chromium/net/url_request/ |
url_request_unittest.cc | 73 // Do a case-insensitive search through |haystack| for |needle|. 74 bool ContainsString(const std::string& haystack, const char* needle) { 76 std::search(haystack.begin(), 77 haystack.end(), 81 return it != haystack.end(); [all...] |
/external/bluetooth/glib/glib/ |
gconvert.c | [all...] |
/hardware/broadcom/wlan/bcm4329/dhdutil/include/ |
bcmutils.h | 305 extern char *bcmstrstr(char *haystack, char *needle);
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
bcmutils.h | 305 extern char *bcmstrstr(char *haystack, char *needle);
|
/packages/apps/Settings/src/com/android/settings/ |
DataUsageSummary.java | [all...] |
/frameworks/base/tools/aapt/ |
ResourceTable.cpp | 613 * haystack, false otherwise. 615 bool isInProductList(const String16& needle, const String16& haystack) { 617 const char16_t *haystack2 = haystack.string(); [all...] |