HomeSort by relevance Sort by last modified time
    Searched defs:strcasecmp (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/JavaScriptCore/wtf/
StringExtras.cpp 34 int strcasecmp(const char* s1, const char* s2) function
StringExtras.h 96 inline int strcasecmp(const char* s1, const char* s2) function
121 int strcasecmp(const char* s1, const char* s2);
  /bionic/libc/string/
strcasecmp.c 1 /* $OpenBSD: strcasecmp.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
77 strcasecmp(const char *s1, const char *s2) function
  /external/tcpdump/
strcasecmp.c 19 "@(#) $Header: /tcpdump/master/tcpdump/strcasecmp.c,v 1.6 2003/11/16 09:36:43 guy Exp $";
67 strcasecmp(s1, s2) function
  /external/chromium/base/
string_util_posix.h 24 inline int strcasecmp(const char* string1, const char* string2) { function in namespace:base
25 return ::strcasecmp(string1, string2);
string_util_win.h 24 inline int strcasecmp(const char* s1, const char* s2) { function in namespace:base
  /external/e2fsprogs/intl/
os2compat.h 39 #define strcasecmp stricmp macro
localealias.c 77 # define strcasecmp __strcasecmp macro
390 return strcasecmp (map1->alias, map2->alias);
  /external/chromium/sdch/open-vcdiff/vsprojects/
config.h 64 #define strcasecmp _stricmp macro
  /external/e2fsprogs/include/nonunix/
config.h 11 #define strcasecmp _stricmp macro
unistd.h 46 #define strcasecmp _stricmp macro
  /external/open-vcdiff/gflags/src/windows/
port.h 67 #define strcasecmp _stricmp macro
  /external/open-vcdiff/vsprojects/
config.h 83 #define strcasecmp _stricmp macro
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_config.h 33 #define strcasecmp stricmp macro
  /external/e2fsprogs/misc/
util.c 36 int strcasecmp (char *s1, char *s2) function
  /external/qemu/android/utils/
system.h 103 /** Handle strcasecmp on Windows
106 # define strcasecmp stricmp macro
  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 42 #define strcasecmp _stricmp macro
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
main.cpp 53 static inline int strcasecmp(const char* s1, const char* s2) function
193 if (strcasecmp(argn[i], "test") == 0)
195 if (strcasecmp(argn[i], "onstreamload") == 0 && !obj->onStreamLoad)
197 else if (strcasecmp(argn[i], "onStreamDestroy") == 0 && !obj->onStreamDestroy)
199 else if (strcasecmp(argn[i], "onURLNotify") == 0 && !obj->onURLNotify)
201 else if (strcasecmp(argn[i], "src") == 0 &&
202 strcasecmp(argv[i], "data:application/x-webkit-test-netscape,returnerrorfromnewstream") == 0)
204 else if (strcasecmp(argn[i], "src") == 0 &&
205 strcasecmp(argv[i], "data:application/x-webkit-test-netscape,alertwhenloaded") == 0)
207 else if (strcasecmp(argn[i], "onSetWindow") == 0 && !obj->onSetWindow
    [all...]
  /external/wpa_supplicant_8/src/utils/
os.h 449 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2))
521 #define strcasecmp OS_DO_NOT_USE_strcasecmp macro
  /ndk/sources/host-tools/make-3.81/
make.h 569 # define strcasecmp stricmp
568 # define strcasecmp macro
  /external/libxml2/
triostr.c 71 # define strcasecmp(x,y) stricmp(x,y) macro
77 # define strcasecmp(x,y) _stricmp(x,y) macro
79 # define strcasecmp(x,y) strcmpi(x,y) macro
405 return (0 == strcasecmp(first, second));
    [all...]
  /external/openssl/
e_os.h 669 # define strcasecmp _stricmp macro
672 /* VMS below version 7.0 doesn't have strcasecmp() */
674 # define strcasecmp OPENSSL_strcasecmp macro
678 # define strcasecmp stricmp macro
683 # define strcasecmp stricmp macro
  /external/valgrind/main/coregrind/
m_libcbase.c 316 Int VG_(strcasecmp) ( const Char* s1, const Char* s2 ) function
  /external/mdnsresponder/Clients/
dns-sd.c 96 #define strcasecmp _stricmp macro
247 if (!strcasecmp(s, "A" )) return(kDNSServiceType_A);
248 else if (!strcasecmp(s, "NS" )) return(kDNSServiceType_NS);
249 else if (!strcasecmp(s, "MD" )) return(kDNSServiceType_MD);
250 else if (!strcasecmp(s, "MF" )) return(kDNSServiceType_MF);
251 else if (!strcasecmp(s, "CNAME" )) return(kDNSServiceType_CNAME);
252 else if (!strcasecmp(s, "SOA" )) return(kDNSServiceType_SOA);
253 else if (!strcasecmp(s, "MB" )) return(kDNSServiceType_MB);
254 else if (!strcasecmp(s, "MG" )) return(kDNSServiceType_MG);
255 else if (!strcasecmp(s, "MR" )) return(kDNSServiceType_MR)
    [all...]
  /external/chromium/third_party/libevent/
http.c 93 #define strcasecmp _stricmp macro
406 return (connection == NULL || strcasecmp(connection, "keep-alive") != 0);
409 return (connection != NULL && strcasecmp(connection, "close") == 0);
1314 if (strcasecmp(header->key, key) == 0)
    [all...]

Completed in 1479 milliseconds

1 2