Searched defs:isascii (Results 1 - 9 of 9) sorted by relevance

/external/stlport/stlport/
H A Dctype.h82 __inline int (isascii)(int c) { return ((unsigned)(c) < 0x80); } function
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dutil.h195 #undef isascii macro
222 #define isascii(x) (((x) & ~0x7f) == 0) macro
/external/tcpdump/
H A Dprint-pppoe.c161 unsigned isascii = 0, isgarbage = 0; local
171 isascii++;
178 if (isascii > isgarbage) {
/external/chromium_org/third_party/icu/source/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
2670 return (isascii(a) && isupper(a)) ? tolower(a) : a;
2743 while (isascii((unsigned char) *cp) &&
2762 (!isascii(*cp) || !isspace((unsigned char) *cp)));
2763 if (isascii(*c
[all...]
/external/icu/icu4c/source/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
2670 return (isascii(a) && isupper(a)) ? tolower(a) : a;
2743 while (isascii((unsigned char) *cp) &&
2762 (!isascii(*cp) || !isspace((unsigned char) *cp)));
2763 if (isascii(*c
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h358 /// int isascii(int c);
359 isascii, enumerator in enum:llvm::LibFunc::Func
/external/libxml2/
H A Dtrio.c310 #if !defined(HAVE_ISASCII) && !defined(isascii)
311 # define isascii(x) ((unsigned int)(x) < 128) macro
1224 if (! isascii(format[index]))
3097 if (! isascii(format[index]))
5510 if (isascii(self->current))
5678 if (isascii(self->current))
6066 if (! isascii(format[index]))

Completed in 3386 milliseconds