Searched refs:tolower (Results 1 - 25 of 68) sorted by relevance

123

/external/srec/seti/setiUtils/src/
H A Dplatform_utils.c102 for (; *str1 != '\0' && *str2 != '\0' && tolower(*str1) == tolower(*str2);
110 return tolower(*str1) < tolower(*str2)? -1 : 1;
/external/webkit/JavaScriptCore/wtf/
H A DDisallowCType.h54 #undef tolower macro
71 #define tolower tolower_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
/external/stlport/stlport/stl/
H A D_cctype.h43 using _STLP_VENDOR_CSTD::tolower;
H A D_ctype.h96 char (tolower)(char __c) const { return do_tolower(__c); } function in class:ctype
97 const char* (tolower)(char* __low, const char* __high) const { function in class:ctype
202 wchar_t (tolower)(wchar_t __c) const { return do_tolower(__c); } function in class:ctype
203 const wchar_t* (tolower)(wchar_t* __low, const wchar_t* __high) const function in class:ctype
/external/srec/srec/ca/
H A Dvoc_basi.c125 lower[i] = tolower(label[i]);
168 lower[i] = tolower((unsigned char)label[i]);
/external/kernel-headers/original/linux/
H A Dctype.h51 #define tolower(c) __tolower(c) macro
/external/stlport/stlport/
H A Dlocale78 #undef tolower
131 inline _CharT tolower(_CharT c, const locale& loc)
132 { return (use_facet<ctype<_CharT> >(loc)).tolower(c); }
H A Dctype.h63 # undef tolower macro
/external/stlport/test/unit/
H A Dctype_facets_test.cpp128 //tolower
130 CPPUNIT_ASSERT( ct.tolower('A') == 'a' );
131 CPPUNIT_ASSERT( ct.tolower('a') == 'a' );
132 CPPUNIT_ASSERT( ct.tolower('1') == '1' );
135 //tolower range
139 ct.tolower(range, range + sizeof(range));
272 //tolower
274 CPPUNIT_CHECK( wct.tolower(L'A') == L'a' );
275 CPPUNIT_CHECK( wct.tolower(L'a') == L'a' );
276 CPPUNIT_CHECK( wct.tolower(
[all...]
/external/bluetooth/glib/gio/xdgmime/
H A Dxdgmimeint.c129 return (xdg_unichar_t) tolower ((unsigned char) source);
/external/clearsilver/cs/
H A Dcstest.c36 s[x] = tolower(s[x]);
/external/openssl/crypto/x509/
H A Dx509_cmp.c177 ca = tolower(a->data[i]);
178 cb = tolower(b->data[i]);
224 ca = tolower(*pa);
225 cb = tolower(*pb);
/external/elfutils/src/
H A Dldlex.l166 if (tolower (*endp) == 'k')
170 assert (tolower (*endp) == 'm');
/external/jpeg/
H A Dcdjpeg.c13 #include <ctype.h> /* to declare isupper(), tolower() */
131 ca = tolower(ca);
/external/e2fsprogs/intl/
H A Dlocalealias.c401 /* I know this seems to be odd but the tolower() function in
403 c1 = isupper (*p1) ? tolower (*p1) : *p1;
404 c2 = isupper (*p2) ? tolower (*p2) : *p2;
/external/e2fsprogs/misc/
H A Dutil.c41 ch1 = tolower (ch1);
43 ch2 = tolower (ch2);
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbelo.c375 req[1] = tolower(ELO_PARAMETER);
383 req[1] = tolower(ELO_ID);
/external/dropbear/
H A Dsvr-authpam.c86 compare_message[i] = tolower(compare_message[i]);
/external/libpcap/lbl/
H A Dos-sunos4.h184 int tolower(int);
/external/skia/src/core/
H A DSkTSearch.cpp110 c = tolower(c);
/external/srec/config/en.us/dictionary/
H A Dcmu2nuance.cpp67 fputc(tolower(*p), stdout);
/external/srec/portable/include/
H A Dptypes.h347 #define LTOLOWER tolower
/external/tcpdump/lbl/
H A Dos-sunos4.h184 int tolower(int);
/external/grub/stage2/
H A Dfsys_fat.c444 for (i = 0; i < 8 && (c = filename[i] = tolower (dir_buf[i]))
449 for (j = 0; j < 3 && (c = filename[i + j] = tolower (dir_buf[8 + j]))
/external/openssl/crypto/asn1/
H A Dasn_mime.c738 c = tolower(c);
748 c = tolower(c);
772 c = tolower(c);

Completed in 323 milliseconds

123