HomeSort by relevance Sort by last modified time
    Searched refs:isupper (Results 26 - 50 of 441) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
ctype.h 27 int isupper(int c);
62 #undef isupper macro
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(isupper(0)), int>::value), "");
99 assert(!isupper('a'));
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /bionic/libc/upstream-openbsd/lib/libc/gen/
isctype.c 120 #undef isupper macro
122 isupper(int c) function
126 DEF_STRONG(isupper); variable
fnmatch.c 218 else if (nocase && (isupper((unsigned char)**string) ||
219 isupper((unsigned char)*startch) ||
220 isupper((unsigned char)**pattern))
234 else if (nocase && (isupper((unsigned char)**string) ||
235 isupper((unsigned char)**pattern))
263 else if (nocase && (isupper((unsigned char)**string) ||
264 isupper((unsigned char)**pattern))
  /bionic/tests/
ctype_test.cpp 97 TEST(ctype, isupper) {
98 EXPECT_TRUE(isupper('A'));
99 EXPECT_FALSE(isupper('a'));
100 EXPECT_FALSE(isupper('!'));
125 // _tolower may mangle characters for which isupper is false.
  /external/libcxx/test/std/strings/c.strings/
cctype.pass.cpp 56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(std::isupper(0)), int>::value), "");
99 assert(!std::isupper('a'));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cctype.pass.cpp 56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(std::isupper(0)), int>::value), "");
99 assert(!isupper('a'));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/c.strings/
cctype.pass.cpp 56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(std::isupper(0)), int>::value), "");
99 assert(!std::isupper('a'));
  /device/linaro/bootloader/edk2/StdLib/Include/
ctype.h 45 /** The isalpha function tests for any character for which isupper or islower
49 characters for which isupper or islower is true.
143 /** The isupper function tests for any character that is an uppercase letter or
145 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
153 int isupper(int c);
193 @return If the argument is a character for which isupper is true and
209 the current locale, for which isupper is true, the toupper
233 #define isupper(c) (__isCClass( (int)c, (_CU))) macro
  /external/syslinux/com32/include/
ctype.h 95 __ctype_inline int isupper(int __c) function
116 return isupper(__c) ? _tolower(__c) : __c;
  /bionic/libc/bionic/
ctype.cpp 72 return isupper(c);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_errno.py 30 if attribute.isupper():
  /external/chromium-trace/catapult/common/py_utils/py_utils/
dependency_util.py 38 assert version.isupper(), (
  /external/libmojo/third_party/jinja2/
defaults.py 43 __all__ = tuple(x for x in locals().keys() if x.isupper())
  /external/python/cpython2/Lib/test/
test_errno.py 29 if attribute.isupper():
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /development/ndk/platforms/android-9/include/
ctype.h 81 int isupper(int);
147 __CTYPE_INLINE int isupper(int c) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
bytes_methods.h 40 #define ISUPPER(c) Py_ISUPPER(c)
49 #undef isupper macro
50 #define isupper(c) undefined_isupper(c) macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
bytes_methods.h 40 #define ISUPPER(c) Py_ISUPPER(c)
49 #undef isupper macro
50 #define isupper(c) undefined_isupper(c) macro
  /external/python/cpython2/Include/
bytes_methods.h 40 #define ISUPPER(c) Py_ISUPPER(c)
49 #undef isupper macro
50 #define isupper(c) undefined_isupper(c) macro

Completed in 2405 milliseconds

12 3 4 5 6 7 8 91011>>