OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ISUPPER
(Results
1 - 25
of
33
) sorted by null
1
2
/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];
inet_net_pton.c
94
if (
ISUPPER
(ch))
setup_once.h
252
#define
ISUPPER
(x) (
isupper
((int) ((unsigned char)x)))
/toolchain/binutils/binutils-2.25/libiberty/
strtol.c
144
c -=
ISUPPER
(c) ? 'A' - 10 : 'a' - 10;
strtoll.c
152
c -=
ISUPPER
(c) ? 'A' - 10 : 'a' - 10;
strtoul.c
94
c -=
ISUPPER
(c) ? 'A' - 10 : 'a' - 10;
strtoull.c
99
c -=
ISUPPER
(c) ? 'A' - 10 : 'a' - 10;
/toolchain/binutils/binutils-2.25/ld/
ldbuildid.c
86
if (
ISUPPER
(xdigit))
/external/curl/lib/
curl_fnmatch.c
258
(
ISUPPER
(c) &&
ISUPPER
(rangestart))) {
372
found =
ISUPPER
(*s);
curl_setup_once.h
289
#define
ISUPPER
(x) (
isupper
((int) ((unsigned char)x)))
curl_sasl.c
[
all
...]
/ndk/sources/host-tools/make-3.81/glob/
fnmatch.c
86
# define
ISUPPER
(c) (ISASCII (c) &&
isupper
(c))
171
# define FOLD(c) ((flags & FNM_CASEFOLD) &&
ISUPPER
(c) ? tolower (c) : (c))
386
|| (STREQ (str, "upper") &&
ISUPPER
((unsigned char) *n))
/prebuilts/gdb/darwin-x86/include/python2.7/
bytes_methods.h
40
#define
ISUPPER
(c) Py_ISUPPER(c)
49
#undef
isupper
macro
50
#define
isupper
(c) undefined_isupper(c)
macro
/prebuilts/gdb/linux-x86/include/python2.7/
bytes_methods.h
40
#define
ISUPPER
(c) Py_ISUPPER(c)
49
#undef
isupper
macro
50
#define
isupper
(c) undefined_isupper(c)
macro
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bytes_methods.h
40
#define
ISUPPER
(c) Py_ISUPPER(c)
49
#undef
isupper
macro
50
#define
isupper
(c) undefined_isupper(c)
macro
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
bytes_methods.h
40
#define
ISUPPER
(c) Py_ISUPPER(c)
49
#undef
isupper
macro
50
#define
isupper
(c) undefined_isupper(c)
macro
/toolchain/binutils/binutils-2.25/gas/config/
tc-mmix.h
78
: ((name[0] == ':' ||
ISUPPER
(name[0])) \
tc-dlx.c
678
if (
ISUPPER
(*s))
tc-tic30.c
188
else if (
ISUPPER
(c))
196
if (
ISUPPER
(c) || ISLOWER (c) || ISDIGIT (c))
[
all
...]
/external/valgrind/coregrind/m_demangle/
safe-ctype.h
99
#define
ISUPPER
(c) _sch_test(c, _sch_isupper)
144
#undef
isupper
macro
145
#define
isupper
(c) do_not_use_isupper_with_safe_ctype
macro
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
safe-ctype.h
99
#define
ISUPPER
(c) _sch_test(c, _sch_isupper)
141
#undef
isupper
macro
142
#define
isupper
(c) do_not_use_isupper_with_safe_ctype
macro
/toolchain/binutils/binutils-2.25/include/
safe-ctype.h
99
#define
ISUPPER
(c) _sch_test(c, _sch_isupper)
141
#undef
isupper
macro
142
#define
isupper
(c) do_not_use_isupper_with_safe_ctype
macro
/toolchain/binutils/binutils-2.25/binutils/
rclex.c
122
if (key &&
ISUPPER
(key[0]))
/external/curl/tests/server/
tftpd.c
989
if(
ISUPPER
(*cp))
[
all
...]
/toolchain/binutils/binutils-2.25/gas/
macro.c
865
else if (
ISUPPER
(in->ptr[src]))
Completed in 2965 milliseconds
1
2