Home
last modified time | relevance | path

Searched refs:tolower (Results 1 – 25 of 28) sorted by relevance

12

/ndk/tests/device/test-gnustl-full/unit/
Dctype_facets_test.cpp130 CPPUNIT_ASSERT( ct.tolower('A') == 'a' ); in _ctype_facet()
131 CPPUNIT_ASSERT( ct.tolower('a') == 'a' ); in _ctype_facet()
132 CPPUNIT_ASSERT( ct.tolower('1') == '1' ); in _ctype_facet()
139 ct.tolower(range, range + sizeof(range)); in _ctype_facet()
274 CPPUNIT_CHECK( wct.tolower(L'A') == L'a' ); in _ctype_facet_w()
275 CPPUNIT_CHECK( wct.tolower(L'a') == L'a' ); in _ctype_facet_w()
276 CPPUNIT_CHECK( wct.tolower(L'1') == L'1' ); in _ctype_facet_w()
283 wct.tolower(range, range + sizeof(range) / sizeof(wchar_t)); in _ctype_facet_w()
/ndk/tests/device/test-stlport/unit/
Dctype_facets_test.cpp130 CPPUNIT_ASSERT( ct.tolower('A') == 'a' ); in _ctype_facet()
131 CPPUNIT_ASSERT( ct.tolower('a') == 'a' ); in _ctype_facet()
132 CPPUNIT_ASSERT( ct.tolower('1') == '1' ); in _ctype_facet()
139 ct.tolower(range, range + sizeof(range)); in _ctype_facet()
274 CPPUNIT_CHECK( wct.tolower(L'A') == L'a' ); in _ctype_facet_w()
275 CPPUNIT_CHECK( wct.tolower(L'a') == L'a' ); in _ctype_facet_w()
276 CPPUNIT_CHECK( wct.tolower(L'1') == L'1' ); in _ctype_facet_w()
283 wct.tolower(range, range + sizeof(range) / sizeof(wchar_t)); in _ctype_facet_w()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ctype.h96 char (tolower)(char __c) const { return do_tolower(__c); }
97 const char* (tolower)(char* __low, const char* __high) const {
202 wchar_t (tolower)(wchar_t __c) const { return do_tolower(__c); } in wchar_t() argument
203 const wchar_t* (tolower)(wchar_t* __low, const wchar_t* __high) const
D_cctype.h43 using _STLP_VENDOR_CSTD::tolower;
/ndk/sources/cxx-stl/stlport/stlport/
Dlocale78 #undef tolower
131 inline _CharT tolower(_CharT c, const locale& loc)
132 { return (use_facet<ctype<_CharT> >(loc)).tolower(c); }
Dctype.h63 # undef tolower
/ndk/sources/host-tools/make-3.81/
Dhash.h156 (RESULT) += ((isupper (*_key_) ? tolower (*_key_) : *_key_) << (_key_[1] & 0xf)); \
167 (RESULT) += ((isupper (*_key_) ? tolower (*_key_) : *_key_) << (_key_[1] & 0x7)); \
Dmake.h314 || (tolower((unsigned char)*(a)) == tolower((unsigned char)*(b)) \
Ddir.c89 *df++ = tolower ((unsigned char)*filename++); in dosify()
98 *df++ = tolower ((unsigned char)*filename++); in dosify()
135 *df++ = tolower ((unsigned char)*filename); in downcase()
157 h = (h << 4) + (isupper (uc) ? tolower (uc) : uc); in vms_hash()
Dfile.c96 *ln = isupper ((unsigned char)*n) ? tolower ((unsigned char)*n) : *n; in lookup_file()
155 *ln = tolower ((unsigned char)*n); in enter_file()
Dvmsify.c95 **to = tolower ((unsigned char)**from); in copyto()
/ndk/build/awk/
Dextract-debuggable.awk92 _xml_attrib = tolower(_xml_attrib);
Dextract-package-name.awk93 _xml_attrib = tolower(_xml_attrib);
Dxml.awk77 _xml_attrib = tolower(_xml_attrib);
Dextract-launchable.awk151 _xml_attrib = tolower(_xml_attrib);
Dgen-windows-host-path.awk78 lo = tolower(letter)
/ndk/sources/host-tools/make-3.81/glob/
Dfnmatch.c169 # define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
171 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
/ndk/sources/cxx-stl/stlport/stlport/using/
Dlocale26 using _STLP_NEW_IO_NAMESPACE::tolower;
/ndk/sources/cxx-stl/gabi++/include/
Dcctype54 using ::tolower;
/ndk/sources/cxx-stl/system/include/
Dcctype54 using ::tolower;
/ndk/sources/host-tools/sed-4.2.1/sed/
Dregexp.c115 translate[i] = tolower (i);
Dexecute.c367 *start = tolower(*start);
381 *start = tolower(*start);
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c207 { return tolower(c); } in _Locale_tolower()
/ndk/sources/host-tools/nawk-20071023/
DFIXES467 getline, toupper, tolower.
892 fixed egregious error in toupper/tolower functions.
927 Reluctantly added toupper and tolower functions.
/ndk/sources/host-tools/ndk-stack/regex/
Dregcomp.c862 return ((uch)tolower(ch)); in othercase()

12