Home
last modified time | relevance | path

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

12345678910>>...13

/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
Dtolower_1.pass.cpp32 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 …]
Dtolower_many.pass.cpp34 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/
Dtolower.pass.cpp20 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/
Dpystrcmp.c12 (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/
Dpystrcmp.c12 (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/
Dtolower_1.pass.cpp26 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/
Dtolower_1.pass.cpp26 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/
D2002-02-13-ReloadProblem.c10 extern int tolower(int);
14 if ((c <= test) | (tolower(c) <= tolower((unsigned char)test))) in rangematch()
/external/libcxx/test/std/strings/c.strings/
Dcctype.pass.cpp66 #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/
Dctype_h.pass.cpp64 #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/
Dmemorycmp.c28 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/
Dstrto.c21 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/
Dcctype32 int tolower(int c);
95 #ifdef tolower
96 #undef tolower
116 using ::tolower;
/external/u-boot/cmd/
Dini.c209 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/
DT.builtin28 $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/
Dstrcasestr.c55 c = (char)tolower((unsigned char)c); in strcasestr()
61 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
/external/clang/test/Sema/
Dlibbuiltins-ctype-x86_64.c15 int tolower(int);
44 (void)tolower(x); in test()
Dlibbuiltins-ctype-powerpc64.c15 int tolower(int);
44 (void)tolower(x); in test()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/cep/
Dmain.cpp29 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/
DOptParserEmitter.cpp26 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/
Dsnapshot_parser_util.h99 return std::tolower(c1) < std::tolower(c2); in cmp()
/external/deqp-deps/amber/src/
Dtokenizer.cc104 (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/
DOptParserEmitter.cpp28 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/
Dpcre2_maketables.c95 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/
Dbytes_methods.h67 #undef tolower
68 #define tolower(c) undefined_tolower(c) macro

12345678910>>...13