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

12345

/external/clang/test/CodeGen/
H A D2002-02-13-ReloadProblem.c10 extern int tolower(int);
14 if ((c <= test) | (tolower(c) <= tolower((unsigned char)test)))
/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/Source/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/chromium/net/tools/flip_server/
H A Dstring_piece_utils.h22 hash_val = 5 * hash_val + tolower(*it);
39 if (tolower(*p1i) != tolower(*p2i))
/external/chromium/chrome/browser/
H A Dbrowser_util_win.cc24 std::transform(exe.begin(), exe.end(), exe.begin(), tolower);
/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/opencv/otherlibs/highgui/
H A Dgrfmt_base.cpp176 int c1 = tolower(format[i+1]);
177 int c2 = tolower(descr[i+1]);
/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/valgrind/main/coregrind/m_demangle/
H A Dsafe-ctype.h150 #undef tolower macro
151 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
/external/bluetooth/glib/gio/xdgmime/
H A Dxdgmimeint.c129 return (xdg_unichar_t) tolower ((unsigned char) source);
/external/valgrind/main/memcheck/
H A Dmc_replace_strmem.c553 extern int tolower(int); \
557 c1 = tolower(*(unsigned char *)s1); \
558 c2 = tolower(*(unsigned char *)s2); \
588 extern int tolower(int); \
596 if (tolower(*(unsigned char*)s1) \
597 < tolower(*(unsigned char*)s2)) return -1; \
598 if (tolower(*(unsigned char*)s1) \
599 > tolower(*(unsigned char*)s2)) return 1; \
1465 extern int tolower(int); \
1477 UChar n0 = tolower(
[all...]
/external/chromium/chrome/browser/google/
H A Dgoogle_update.cc73 user_exe_path.begin(), tolower);
75 machine_exe_path.begin(), tolower);
278 chrome_exe.begin(), tolower);
/external/chromium/chrome/common/extensions/
H A Dextension_resource_unittest.cc27 std::transform(str.begin(), str.end(), str.begin(), tolower);
/external/elfutils/src/
H A Dldlex.l184 if (tolower (*endp) == 'k')
188 assert (tolower (*endp) == 'm');
/external/jpeg/
H A Dcdjpeg.c13 #include <ctype.h> /* to declare isupper(), tolower() */
131 ca = tolower(ca);
/external/qemu/distrib/jpeg-6b/
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/linux-tools-perf/util/
H A Dconfig.c206 name[baselen++] = tolower(c);
259 var[baselen] = tolower(c);
H A Dutil.h234 #undef tolower macro
254 #define tolower(x) sane_case((unsigned char)(x), 0x20) macro

Completed in 440 milliseconds

12345