Searched refs:tolower (Results 1 - 25 of 110) 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/pcre/
H A Dpcre_maketables.c86 for (i = 0; i < 256; i++) *p++ = tolower(i);
90 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
/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/collada/include/dae/
H A DdaeUtils.h86 DLLSPEC std::string tolower(const std::string& s);
/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.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/collada/src/dae/
H A DdaeUtils.cpp194 string cdom::tolower(const string& s) { function in class:cdom
196 transform(s.begin(), s.end(), back_inserter(result), ::tolower);
/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);

Completed in 1369 milliseconds

12345