/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | tolower_1.pass.cpp | 32 assert(f.tolower(' ') == ' '); in main() 33 assert(f.tolower('A') == 'a'); in main() 34 assert(f.tolower('\x07') == '\x07'); in main() 35 assert(f.tolower('.') == '.'); in main() 36 assert(f.tolower('a') == 'a'); in main() 37 assert(f.tolower('1') == '1'); in main() 38 assert(f.tolower('\xFA') == '\xFA'); in main() 48 assert(f.tolower(' ') == ' '); in main() 49 assert(f.tolower('A') == 'a'); in main() 50 assert(f.tolower('\x07') == '\x07'); in main() [all …]
|
D | tolower_many.pass.cpp | 34 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() 70 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 88 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/python/cpython2/Python/ |
D | pystrcmp.c | 12 (tolower((unsigned)*s1) == tolower((unsigned)*s2))) { in PyOS_mystrnicmp() 16 return tolower((unsigned)*s1) - tolower((unsigned)*s2); in PyOS_mystrnicmp() 22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) { in PyOS_mystricmp() 25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2)); in PyOS_mystricmp()
|
/external/python/cpython3/Python/ |
D | pystrcmp.c | 12 (tolower((unsigned)*s1) == tolower((unsigned)*s2))) { in PyOS_mystrnicmp() 16 return tolower((unsigned)*s1) - tolower((unsigned)*s2); in PyOS_mystrnicmp() 22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) { in PyOS_mystricmp() 25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2)); in PyOS_mystricmp()
|
/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()
|
/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()
|
/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/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 66 #ifdef tolower 67 #error tolower defined 89 ASSERT_SAME_TYPE(int, decltype(std::tolower(0))); in main() 104 assert( std::tolower('A') == 'a'); in main()
|
/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/honggfuzz/libhfuzz/ |
D | memorycmp.c | 28 for (i = 0; tolower((unsigned char)s1[i]) == tolower((unsigned char)s2[i]); i++) { in HF_strcasecmp() 34 return (tolower((unsigned char)s1[i]) - tolower((unsigned char)s2[i])); in HF_strcasecmp() 55 if ((tolower((unsigned char)s1[i]) != tolower((unsigned char)s2[i])) || s1[i] == '\0' || in HF_strncasecmp() 65 return tolower((unsigned char)s1[i]) - tolower((unsigned char)s2[i]); in HF_strncasecmp()
|
/external/u-boot/lib/ |
D | strto.c | 21 if (tolower(s[1]) == 'x' && isxdigit(s[2])) in _parse_integer_fixup_radix() 28 if (*base == 16 && s[0] == '0' && tolower(s[1]) == 'x') in _parse_integer_fixup_radix() 88 switch (tolower(**endp)) { in ustrtoul() 109 switch (tolower(**endp)) { in ustrtoull()
|
/external/libcxx/include/ |
D | cctype | 32 int tolower(int c); 95 #ifdef tolower 96 #undef tolower 116 using ::tolower;
|
/external/u-boot/cmd/ |
D | ini.c | 209 requested_section[i] = tolower(requested_section[i]); in ini_handler() 211 section[i] = tolower(section[i]); in ini_handler() 217 name[i] = tolower(name[i]); in ini_handler() 219 value[i] = tolower(value[i]); in ini_handler()
|
/external/one-true-awk/testdir/ |
D | T.builtin | 28 $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}' >foo1 30 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower)' 35 $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}') >foo1 37 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower) for utf-8'
|
/external/openssh/openbsd-compat/ |
D | strcasestr.c | 55 c = (char)tolower((unsigned char)c); in strcasestr() 61 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 15 int tolower(int); 44 (void)tolower(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 15 int tolower(int); 44 (void)tolower(x); in test()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/cep/ |
D | main.cpp | 29 filter([](int key){return std::tolower(key) == 'a';}); in main() 32 filter([](int key){return std::tolower(key) == 'g';}); in main()
|
/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/OpenCSD/decoder/tests/snapshot_parser_lib/include/ |
D | snapshot_parser_util.h | 99 return std::tolower(c1) < std::tolower(c2); in cmp()
|
/external/deqp-deps/amber/src/ |
D | tokenizer.cc | 104 (tok_str.size() == 3 && std::tolower(tok_str[0]) == 'n' && in NextToken() 105 std::tolower(tok_str[1]) == 'a' && std::tolower(tok_str[2]) == 'n'); in NextToken()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | OptParserEmitter.cpp | 28 char a = tolower(*A), b = tolower(*B); in StrCmpOptionName() 33 a = tolower(*++X); in StrCmpOptionName() 34 b = tolower(*++Y); in StrCmpOptionName()
|
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 95 for (i = 0; i < 256; i++) *p++ = tolower(i); 99 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
|
/external/python/cpython2/Include/ |
D | bytes_methods.h | 67 #undef tolower 68 #define tolower(c) undefined_tolower(c) macro
|