/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/open-vcdiff/gtest/include/gtest/ |
gtest.h | [all...] |
/external/protobuf/gtest/include/gtest/ |
gtest.h | [all...] |
/external/valgrind/main/include/ |
pub_tool_libcbase.h | 95 extern Char* VG_(strstr) ( const Char* haystack, Char* needle ); 96 extern Char* VG_(strcasestr) ( const Char* haystack, Char* 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]):
|
/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): 312 while l and not haystack.endswith(needle[:l]):
|
/external/chromium/testing/gtest/src/ |
gtest.cc | [all...] |
/external/chromium_org/testing/gtest/src/ |
gtest.cc | [all...] |
/external/chromium_org/third_party/mesa/src/src/gtest/src/ |
gtest.cc | [all...] |
/external/gtest/src/ |
gtest.cc | [all...] |
/external/llvm/utils/unittest/googletest/ |
gtest.cc | [all...] |
/external/mesa3d/src/gtest/src/ |
gtest.cc | [all...] |
/external/open-vcdiff/gtest/src/ |
gtest.cc | [all...] |
/external/protobuf/gtest/src/ |
gtest.cc | [all...] |
/ndk/sources/third_party/googletest/googletest/src/ |
gtest.cc | [all...] |
/frameworks/base/tools/aapt/ |
Package.cpp | 448 bool endsWith(const char* haystack, const char* needle) 450 size_t a = strlen(haystack); 453 return strcasecmp(haystack+(a-b), needle) == 0;
|
/bootable/recovery/edify/ |
expr.c | 225 char* haystack = Evaluate(state, argv[1]); local 226 if (haystack == NULL) { 231 char* result = strdup(strstr(haystack, needle) ? "t" : ""); 233 free(haystack);
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Conversation.java | 602 * found in the collection of conversations specified as the haystack. False 605 * @param haystack 607 * @return true if the needle was found in the haystack, false otherwise. 609 public final static boolean contains(Collection<Conversation> haystack, Conversation needle) { 610 // If the haystack is empty, it cannot contain anything. 611 if (haystack == null || haystack.size() <= 0) { 619 for (final Conversation c : haystack) {
|
/external/aac/libSYS/src/ |
genericStds.cpp | 192 const char *FDKstrstr(const char *haystack, const char *needle) { return strstr(haystack, needle); }
|
/external/chromium/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);
|
/external/libsepol/src/ |
conditional.c | 170 * haystack) that has a matching expression. If found, return a 175 cond_node_t * needle, cond_node_t * haystack, 178 while (haystack) { 179 if (cond_expr_equal(needle, haystack)) { 181 return haystack; 183 haystack = haystack->next;
|
/external/qemu/distrib/sdl-1.2.15/src/stdlib/ |
SDL_string.c | 433 char *SDL_strstr(const char *haystack, const char *needle) 436 while ( *haystack ) { 437 if ( SDL_strncmp(haystack, needle, length) == 0 ) { 438 return (char *)haystack; 440 ++haystack; [all...] |