HomeSort by relevance Sort by last modified time
    Searched refs:tolower (Results 1 - 25 of 370) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2002-02-13-ReloadProblem.c 10 extern int tolower(int);
14 if ((c <= test) | (tolower(c) <= tolower((unsigned char)test)))
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.character/
tolower.pass.cpp 12 // template <class charT> charT tolower(charT c, const locale& loc);
20 assert(std::tolower(' ', l) == ' ');
21 assert(std::tolower('<', l) == '<');
22 assert(std::tolower('\x8', l) == '\x8');
23 assert(std::tolower('A', l) == 'a');
24 assert(std::tolower('a', l) == 'a');
25 assert(std::tolower('z', l) == 'z');
26 assert(std::tolower('3', l) == '3');
27 assert(std::tolower('.', l) == '.');
28 assert(std::tolower('f', l) == 'f')
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.character/
tolower.pass.cpp 12 // template <class charT> charT tolower(charT c, const locale& loc);
20 assert(std::tolower(' ', l) == ' ');
21 assert(std::tolower('<', l) == '<');
22 assert(std::tolower('\x8', l) == '\x8');
23 assert(std::tolower('A', l) == 'a');
24 assert(std::tolower('a', l) == 'a');
25 assert(std::tolower('z', l) == 'z');
26 assert(std::tolower('3', l) == '3');
27 assert(std::tolower('.', l) == '.');
28 assert(std::tolower('f', l) == 'f')
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
tolower_1.pass.cpp 14 // char tolower(char) const;
26 assert(f.tolower(' ') == ' ');
27 assert(f.tolower('A') == 'a');
28 assert(f.tolower('\x07') == '\x07');
29 assert(f.tolower('.') == '.');
30 assert(f.tolower('a') == 'a');
31 assert(f.tolower('1') == '1');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
tolower_1.pass.cpp 14 // char tolower(char) const;
26 assert(f.tolower(' ') == ' ');
27 assert(f.tolower('A') == 'a');
28 assert(f.tolower('\x07') == '\x07');
29 assert(f.tolower('.') == '.');
30 assert(f.tolower('a') == 'a');
31 assert(f.tolower('1') == '1');
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_1.pass.cpp 14 // charT tolower(charT) const;
33 assert(f.tolower(' ') == ' ');
34 assert(f.tolower('A') == 'a');
35 assert(f.tolower('\x07') == '\x07');
36 assert(f.tolower('.') == '.');
37 assert(f.tolower('a') == 'a');
38 assert(f.tolower('1') == '1');
39 assert(f.tolower('\xDA') == '\xFA');
40 assert(f.tolower('\xFA') == '\xFA');
49 assert(f.tolower(' ') == ' ')
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_1.pass.cpp 14 // charT tolower(charT) const;
32 assert(f.tolower(' ') == ' ');
33 assert(f.tolower('A') == 'a');
34 assert(f.tolower('\x07') == '\x07');
35 assert(f.tolower('.') == '.');
36 assert(f.tolower('a') == 'a');
37 assert(f.tolower('1') == '1');
38 assert(f.tolower('\xDA') == '\xFA');
39 assert(f.tolower('\xFA') == '\xFA');
48 assert(f.tolower(' ') == ' ')
    [all...]
  /ndk/sources/android/support/src/musl-locale/
tolower_l.c 5 return tolower(c);
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
tolower_1.pass.cpp 14 // charT tolower(charT) const;
26 assert(f.tolower(L' ') == L' ');
27 assert(f.tolower(L'A') == L'a');
28 assert(f.tolower(L'\x07') == L'\x07');
29 assert(f.tolower(L'.') == L'.');
30 assert(f.tolower(L'a') == L'a');
31 assert(f.tolower(L'1') == L'1');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
tolower_1.pass.cpp 14 // charT tolower(charT) const;
26 assert(f.tolower(L' ') == L' ');
27 assert(f.tolower(L'A') == L'a');
28 assert(f.tolower(L'\x07') == L'\x07');
29 assert(f.tolower(L'.') == L'.');
30 assert(f.tolower(L'a') == L'a');
31 assert(f.tolower(L'1') == L'1');
  /external/fio/lib/
strcasestr.c 13 (tolower(*p) == tolower(*s))) {
  /bionic/libc/upstream-netbsd/lib/libc/string/
strcasestr.c 58 c = tolower((unsigned char)c);
64 } while ((char)tolower((unsigned char)sc) != c);
  /external/c-ares/
ares_strcasecmp.c 32 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i];
33 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i];
55 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i];
56 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i];
  /bionic/libstdc++/include/
cctype 54 using ::tolower;
  /ndk/sources/cxx-stl/gabi++/include/
cctype 54 using ::tolower;
  /ndk/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 64 #ifdef tolower
65 #error tolower defined
86 static_assert((std::is_same<decltype(tolower(0)), int>::value), "");
101 assert(tolower('A') == 'a');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp 64 #ifdef tolower
65 #error tolower defined
86 static_assert((std::is_same<decltype(tolower(0)), int>::value), "");
101 assert(tolower('A') == 'a');
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 43 using _STLP_VENDOR_CSTD::tolower;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 43 using _STLP_VENDOR_CSTD::tolower;
  /bionic/tests/
ctype_test.cpp 118 TEST(ctype, tolower) {
119 EXPECT_EQ('!', tolower('!'));
120 EXPECT_EQ('a', tolower('a'));
121 EXPECT_EQ('a', tolower('A'));
  /external/cblas/src/
xerbla.c 38 for(i=0; i != XerblaStrLen; i++) rout[i+6] = tolower(srname[i]);

Completed in 2849 milliseconds

1 2 3 4 5 6 7 8 91011>>