/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | tolower_1.pass.cpp | 33 assert(f.tolower(' ') == ' '); in main() 34 assert(f.tolower('A') == 'a'); in main() 35 assert(f.tolower('\x07') == '\x07'); in main() 36 assert(f.tolower('.') == '.'); in main() 37 assert(f.tolower('a') == 'a'); in main() 38 assert(f.tolower('1') == '1'); in main() 39 assert(f.tolower('\xDA') == '\xFA'); in main() 40 assert(f.tolower('\xFA') == '\xFA'); in main() 49 assert(f.tolower(' ') == ' '); in main() 50 assert(f.tolower('A') == 'a'); in main() [all …]
|
D | tolower_many.pass.cpp | 35 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 52 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 69 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 86 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.character/ |
D | tolower.pass.cpp | 20 assert(std::tolower(' ', l) == ' '); in main() 21 assert(std::tolower('<', l) == '<'); in main() 22 assert(std::tolower('\x8', l) == '\x8'); in main() 23 assert(std::tolower('A', l) == 'a'); in main() 24 assert(std::tolower('a', l) == 'a'); in main() 25 assert(std::tolower('z', l) == 'z'); in main() 26 assert(std::tolower('3', l) == '3'); in main() 27 assert(std::tolower('.', l) == '.'); in main() 28 assert(std::tolower('f', l) == 'f'); in main() 29 assert(std::tolower('9', l) == '9'); in main() [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | tolower_1.pass.cpp | 26 assert(f.tolower(' ') == ' '); in main() 27 assert(f.tolower('A') == 'a'); in main() 28 assert(f.tolower('\x07') == '\x07'); in main() 29 assert(f.tolower('.') == '.'); in main() 30 assert(f.tolower('a') == 'a'); in main() 31 assert(f.tolower('1') == '1'); in main()
|
D | tolower_many.pass.cpp | 28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
D | tolower_1.pass.cpp | 26 assert(f.tolower(L' ') == L' '); in main() 27 assert(f.tolower(L'A') == L'a'); in main() 28 assert(f.tolower(L'\x07') == L'\x07'); in main() 29 assert(f.tolower(L'.') == L'.'); in main() 30 assert(f.tolower(L'a') == L'a'); in main() 31 assert(f.tolower(L'1') == L'1'); in main()
|
D | tolower_many.pass.cpp | 28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/c-ares/ |
D | ares_strcasecmp.c | 32 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strcasecmp() 33 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strcasecmp() 55 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strncasecmp() 56 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strncasecmp()
|
/external/clang/test/CodeGen/ |
D | 2002-02-13-ReloadProblem.c | 10 extern int tolower(int); 14 if ((c <= test) | (tolower(c) <= tolower((unsigned char)test))) in rangematch()
|
/external/libcxx/include/ |
D | cctype | 32 int tolower(int c); 147 #ifdef tolower 148 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_tolower(int __c) {return tolower(__c);} 149 #undef tolower 150 inline _LIBCPP_INLINE_VISIBILITY int tolower(int __c) {return __libcpp_tolower(__c);} 151 #else // tolower 152 using ::tolower; 153 #endif // tolower
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 64 #ifdef tolower 65 #error tolower defined 86 static_assert((std::is_same<decltype(tolower(0)), int>::value), ""); in main() 101 assert(tolower('A') == 'a'); in main()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 64 #ifdef tolower 65 #error tolower defined 86 static_assert((std::is_same<decltype(std::tolower(0)), int>::value), ""); in main() 101 assert(tolower('A') == 'a'); in main()
|
/external/fio/lib/ |
D | strcasestr.c | 13 (tolower(*p) == tolower(*s))) { in strcasestr()
|
/external/llvm/utils/TableGen/ |
D | OptParserEmitter.cpp | 26 char a = tolower(*A), b = tolower(*B); in StrCmpOptionName() 31 a = tolower(*++X); in StrCmpOptionName() 32 b = tolower(*++Y); in StrCmpOptionName()
|
/external/pcre/dist/ |
D | pcre_maketables.c | 94 for (i = 0; i < 256; i++) *p++ = tolower(i); in pcre_maketables() 98 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i); in pcre_maketables()
|
/external/valgrind/coregrind/m_demangle/ |
D | safe-ctype.h | 150 #undef tolower 151 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
|
/external/valgrind/shared/ |
D | vg_replace_strmem.c | 667 extern int tolower(int); \ 671 c1 = tolower(*(const UChar *)s1); \ 672 c2 = tolower(*(const UChar *)s2); \ 708 extern int tolower(int); \ 716 if (tolower(*(const UChar *)s1) \ 717 < tolower(*(const UChar*)s2)) return -1; \ 718 if (tolower(*(const UChar *)s1) \ 719 > tolower(*(const UChar *)s2)) return 1; \ 1771 extern int tolower(int); \ 1783 UChar n0 = tolower(n[0]); \ [all …]
|
/external/libbrillo/brillo/ |
D | cryptohome.cc | 68 lowercase.begin(), lowercase.end(), lowercase.begin(), ::tolower); in SanitizeUserName() 76 std::transform(final.begin(), final.end(), final.begin(), ::tolower); in SanitizeUserName()
|
/external/llvm/lib/Option/ |
D | OptTable.cpp | 31 char a = tolower(*A), b = tolower(*B); in StrCmpOptionNameIgnoreCase() 36 a = tolower(*++X); in StrCmpOptionNameIgnoreCase() 37 b = tolower(*++Y); in StrCmpOptionNameIgnoreCase()
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_base.cpp | 176 int c1 = tolower(format[i+1]); in CheckExtension() 177 int c2 = tolower(descr[i+1]); in CheckExtension()
|
/external/deqp/framework/delibs/decpp/ |
D | deStringUtil.cpp | 51 char operator() (char c) { return std::tolower(c, loc); } in operator ()() 140 return std::tolower(c, std::locale::classic()); in toLower()
|
/external/e2fsprogs/misc/ |
D | util.c | 42 ch1 = tolower (ch1); in strcasecmp() 44 ch2 = tolower (ch2); in strcasecmp()
|
/external/cblas/src/ |
D | xerbla.c | 38 for(i=0; i != XerblaStrLen; i++) rout[i+6] = tolower(srname[i]); in F77_xerbla()
|
/external/toybox/kconfig/lxdialog/ |
D | menubox.c | 284 key = tolower(key); in dialog_menu() 292 if (key == tolower(item_str()[j])) in dialog_menu() 299 if (key == tolower(item_str()[j])) in dialog_menu()
|
/external/elfutils/src/ |
D | ldlex.l | 176 if (tolower (*endp) == 'k') 180 assert (tolower (*endp) == 'm');
|