Searched defs:isascii (Results 1 - 9 of 9) sorted by last modified time

/external/webkit/Tools/android/flex-2.5.4a/
H A Dflexdef.h116 /* ANSI C does not guarantee that isascii() is defined */
117 #ifndef isascii
118 #define isascii(c) ((c) <= 0177) macro
/external/webkit/Source/JavaScriptCore/wtf/
H A DDisallowCType.h42 #undef isascii macro
59 #define isascii isascii_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
/external/tcpdump/
H A Dprint-pppoe.c159 unsigned isascii = 0, isgarbage = 0; local
169 isascii++;
176 if (isascii > isgarbage) {
H A Dtcpdump-stdinc.h60 #define isascii __isascii macro
/external/stlport/stlport/
H A Dctype.h82 __inline int (isascii)(int c) { return ((unsigned)(c) < 0x80); } function
/external/linux-tools-perf/util/
H A Dutil.h227 #undef isascii macro
246 #define isascii(x) (((x) & ~0x7f) == 0) macro
/external/kernel-headers/original/linux/
H A Dctype.h34 #define isascii(c) (((unsigned char)(c))<=0x7f) macro
/external/icu4c/tools/tzcode/
H A Dzdump.c32 #ifndef isascii
33 #define isascii(x) 1 macro
34 #endif /* !defined isascii */
235 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp))
245 if (isascii((unsigned char) *cp) &&
H A Dzic.c45 ** only if isascii(C) || C == EOF. Modern hosts obey the C Standard,
47 ** Neither the C Standard nor Posix require that `isascii' exist.
49 ** If isascii is not defined, the isascii check succeeds trivially.
52 #ifndef isascii
53 #define isascii(x) 1 macro
2638 return (isascii(a) && isupper(a)) ? tolower(a) : a;
2711 while (isascii((unsigned char) *cp) &&
2730 (!isascii(*cp) || !isspace((unsigned char) *cp)));
2731 if (isascii(*c
[all...]

Completed in 196 milliseconds