Home
last modified time | relevance | path

Searched refs:isupper (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/netbsd-src/sys/external/bsd/acpica/dist/tools/acpisrc/
H A Dascase.c294 if (isupper ((int) *SubBuffer)) in AsMixedCaseToUnderscores()
297 while ((isupper ((int) *SubString)) || in AsMixedCaseToUnderscores()
322 if (isupper ((int) SubBuffer[0]) && in AsMixedCaseToUnderscores()
384 if (!isupper ((int) *SubBuffer) && in AsMixedCaseToUnderscores()
454 if (isupper ((int) SubBuffer[2])) in AsMixedCaseToUnderscores()
554 if ((isupper ((int) SubBuffer[0])) && in AsLowerCaseIdentifiers()
603 (isupper ((int) SubBuffer[i+1]))) in AsUppercaseTokens()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dcctype29 int isupper(int c);
86 #ifdef isupper
87 #undef isupper
113 using ::isupper;
/netbsd-src/lib/libc/citrus/
H A Dcitrus_bcs_strtoul.c63 #undef isupper
64 #define isupper(c) _bcs_isupper(c) macro
H A Dcitrus_bcs_strtol.c58 #undef isupper
59 #define isupper(c) _bcs_isupper(c) macro
/netbsd-src/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c67 return (isupper((unsigned char)c) in cd9660_is_d_char()
75 return (isupper((unsigned char)c) in cd9660_is_a_char()
/netbsd-src/external/cddl/osnet/dist/common/util/
H A Dstrtolctype.h50 #define isalpha(ch) (isupper(ch) || islower(ch))
55 #define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z') macro
/netbsd-src/tests/usr.bin/xlint/lint1/
H A Dmsg_342.c27 int isupper(int);
61 isupper(c); in cover_is_ctype_function()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-system.h51 #undef isupper
52 #define isupper(c) ISUPPER(c) macro
/netbsd-src/sys/external/bsd/ipf/netinet/
H A Dip_proxy.h143 # ifndef isupper
144 # define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
150 # define isalpha(x) (isupper(x) || islower(x))
153 # define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
/netbsd-src/games/pig/
H A Dpig.c98 allupper = firstupper = isupper((unsigned char)buf[0]); in pigout()
100 allupper = allupper && isupper((unsigned char)buf[i]); in pigout()
/netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/
H A Dstrtol.c84 && isupper((unsigned char)*str)
106 && isupper((unsigned char)*str)
/netbsd-src/usr.bin/spell/spellprog/
H A Dlook.c64 if (isupper(*s)) in look()
176 else if (isupper(*s2)) in compare()
/netbsd-src/games/hunt/hunt/
H A Dplayit.c300 if (isupper(ch = getchar())) in quit()
315 if (isupper(ch = getchar())) in quit()
388 if (isupper(ch = getchar())) in quit()
/netbsd-src/external/gpl2/texinfo/dist/makeinfo/
H A Dmakeinfo.h249 #define coerce_to_lower(c) ((isupper(c) ? tolower(c) : (c)))
266 #ifndef isupper
267 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dsafe-ctype.h141 #undef isupper
142 #define isupper(c) do_not_use_isupper_with_safe_ctype macro
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A Dsafe-ctype.h141 #undef isupper
142 #define isupper(c) do_not_use_isupper_with_safe_ctype macro
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dsafe-ctype.h141 #undef isupper
142 #define isupper(c) do_not_use_isupper_with_safe_ctype macro
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dsafe-ctype.h141 #undef isupper
142 #define isupper(c) do_not_use_isupper_with_safe_ctype macro
/netbsd-src/games/fortune/strfile/
H A Dstrfile.c209 if (Iflag && isupper((unsigned char)*nsp)) in main()
409 if (isupper(c1)) in cmp_str()
411 if (isupper(c2)) in cmp_str()
/netbsd-src/external/gpl3/gcc/dist/libquadmath/printf/
H A Dquadmath-printf.h63 #undef isupper
67 #define isupper(x) \ macro
/netbsd-src/external/gpl3/gcc.old/dist/libquadmath/printf/
H A Dquadmath-printf.h63 #undef isupper
67 #define isupper(x) \ macro
/netbsd-src/usr.bin/hexdump/
H A Dodsyntax.c235 if (isupper((unsigned char)*type_string)) { in posixtypes()
262 if (isupper((unsigned char)*type_string)) { in posixtypes()
/netbsd-src/sys/lib/libkern/
H A Dlibkern.h71 LIBKERN_INLINE int isupper(int) __unused;
163 isupper(int ch) in isupper()
177 return (isupper(ch) || islower(ch));
235 if (isupper(ch)) in tolower()
161 isupper(int ch) isupper() function
/netbsd-src/external/bsd/flex/dist/src/
H A Dccl.c299 return isupper (c) ? tolower (c) : (islower (c) ? toupper (c) : c); in reverse_case()
305 return (isupper (c) || islower (c)) ? true : false; in has_case()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_std/
H A Dcctype57 #undef isupper
73 using ::isupper;

12345678910>>...12