HomeSort by relevance Sort by last modified time
    Searched refs:tolower (Results 1 - 25 of 402) 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)))
  /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...]
  /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');
  /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);
  /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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
strcasecmp.c 61 while (tolower(*us1) == tolower(*us2++))
64 return (tolower(*us1) - tolower(*--us2));
86 if (tolower(*us1) != tolower(*us2++))
87 return (tolower(*us1) - tolower(*--us2));
  /bionic/libc/upstream-netbsd/libc/string/
strcasestr.c 58 c = tolower((unsigned char)c);
64 } while ((char)tolower((unsigned char)sc) != c);
  /external/srec/seti/setiUtils/src/
platform_utils.c 102 for (; *str1 != '\0' && *str2 != '\0' && tolower(*str1) == tolower(*str2);
110 return tolower(*str1) < tolower(*str2)? -1 : 1;
  /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/4/platforms/android-5/arch-x86/usr/include/
cctype 52 using ::tolower;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 52 using ::tolower;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cctype 54 using ::tolower;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cctype 54 using ::tolower;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 74 #ifdef tolower
85 using std::tolower;
  /external/stlport/stlport/stl/
_cctype.h 43 using _STLP_VENDOR_CSTD::tolower;
  /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');

Completed in 943 milliseconds

1 2 3 4 5 6 7 8 91011>>