/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
D | isupper.c | 29 int ret = isupper('A'); in isupper_0100() 40 int ret = isupper('a'); in isupper_0200() 51 int ret = isupper('1'); in isupper_0300() 62 int ret = isupper('['); in isupper_0400() 75 int ret = isupper((char)i); in isupper_0500()
|
/third_party/musl/porting/liteos_m/kernel/src/ctype/ |
D | isupper.c | 2 #undef isupper 4 int isupper(int c) in isupper() function 11 return isupper(c); in __isupper_l()
|
D | tolower.c | 5 if (isupper(c)) return c | 32; in tolower()
|
/third_party/musl/porting/uniproton/kernel/src/ctype/ |
D | isupper.c | 2 #undef isupper 4 int isupper(int c) in isupper() function 11 return isupper(c); in __isupper_l()
|
D | tolower.c | 5 if (isupper(c)) return c | 32; in tolower()
|
/third_party/musl/porting/liteos_a/kernel/src/ctype/ |
D | isupper.c | 2 #undef isupper 4 int isupper(int c) in isupper() function 11 return isupper(c); in __isupper_l()
|
D | tolower.c | 5 if (isupper(c)) return c | 32; in tolower()
|
/third_party/musl/src/ctype/ |
D | isupper.c | 2 #undef isupper 4 int isupper(int c) in isupper() function 11 return isupper(c); in __isupper_l()
|
D | tolower.c | 5 if (isupper(c)) return c | 32; in tolower()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | ctype.h | 20 int isupper(int); 34 #define isupper(a) (0 ? isupper(a) : ((unsigned)(a)-'A') < 26) macro
|
/third_party/musl/porting/linux/user/include/ |
D | ctype.h | 20 int isupper(int); 34 #define isupper(a) (0 ? isupper(a) : ((unsigned)(a)-'A') < 26) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | ctype.h | 20 int isupper(int); 34 #define isupper(a) (0 ? isupper(a) : ((unsigned)(a)-'A') < 26) macro
|
/third_party/musl/ndk_musl_include/ |
D | ctype.h | 20 int isupper(int); 34 #define isupper(a) (0 ? isupper(a) : ((unsigned)(a)-'A') < 26) macro
|
/third_party/musl/include/ |
D | ctype.h | 20 int isupper(int); 34 #define isupper(a) (0 ? isupper(a) : ((unsigned)(a)-'A') < 26) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | ctype.h | 20 int isupper(int); 34 #define isupper(a) (0 ? isupper(a) : ((unsigned)(a)-'A') < 26) macro
|
/third_party/mindspore/third_party/securec/src/ |
D | secinput.h | 123 #ifndef isupper 124 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro 130 #define isalpha(c) (isupper(c) || (islower(c)))
|
/third_party/bounds_checking_function/src/ |
D | secinput.h | 151 #ifndef isupper 152 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro 158 #define isalpha(c) (isupper(c) || (islower(c)))
|
/third_party/boost/boost/spirit/home/support/char_encoding/ |
D | standard.hpp | 134 isupper(int ch) in isupper() function 137 return std::isupper(ch) != 0; in isupper()
|
D | standard_wide.hpp | 142 isupper(wchar_t ch) in isupper() function 169 return isupper(ch) ? in tolower()
|
/third_party/python/Lib/curses/ |
D | ascii.py | 55 def isalpha(c): return isupper(c) or islower(c) 65 def isupper(c): return 65 <= _ctoi(c) <= 90 function
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | defaults.py | 56 __all__ = tuple(x for x in locals().keys() if x.isupper())
|
/third_party/python/Lib/test/ |
D | test_errno.py | 29 if attribute.isupper():
|
/third_party/boost/libs/iostreams/example/ |
D | dictionary_filter.hpp | 25 using ::isupper; 207 if (!value.empty() && !key.empty() && std::isupper((unsigned char) key[0])) in replace()
|
/third_party/boost/libs/regex/src/ |
D | c_regex_traits.cpp | 37 using ::isprint; using ::isupper; 170 || ((mask & char_class_upper) && (std::isupper)(static_cast<unsigned char>(c))) in isctype()
|
/third_party/e2fsprogs/misc/ |
D | util.c | 58 if (isupper (ch1)) in strcasecmp() 60 if (isupper (ch2)) in strcasecmp()
|