HomeSort by relevance Sort by last modified time
    Searched refs:isblank (Results 26 - 50 of 56) sorted by null

12 3

  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
ctype.h 88 int isblank(int);
173 __CTYPE_INLINE int isblank(int c) function
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
ctype.h 88 int isblank(int);
173 __CTYPE_INLINE int isblank(int c) function
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
ctype.h 88 int isblank(int);
173 __CTYPE_INLINE int isblank(int c) function
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
ctype.h 88 int isblank(int);
173 __CTYPE_INLINE int isblank(int c) function
  /ndk/sources/host-tools/sed-4.2.1/
basicdefs.h 146 #if defined isblank || defined HAVE_ISBLANK
147 # define ISBLANK(c) (ISASCII (c) && isblank (c))
149 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  /ndk/sources/host-tools/make-3.81/
vpath.c 225 if (*p++ == PATH_SEPARATOR_CHAR || isblank ((unsigned char)*p))
233 while (*p == PATH_SEPARATOR_CHAR || isblank ((unsigned char)*p))
245 && !isblank ((unsigned char)*p))
278 while (*p == PATH_SEPARATOR_CHAR || isblank ((unsigned char)*p))
misc.c 121 while (out > line && isblank ((unsigned char)out[-1]))
426 while (*s != '\0' && !isblank ((unsigned char)*s))
442 && (backslash || !isblank ((unsigned char)*p)))
466 while (isblank ((unsigned char)*s))
make.h 97 #ifndef isblank
98 # define isblank(c) ((c) == ' ' || (c) == '\t') macro
read.c 656 while (isblank ((unsigned char)p[-1]))
669 && (isblank ((unsigned char)p2[6]) || p2[6] == '\0'))
684 while (isblank ((unsigned char)p[-1]))
    [all...]
expand.c 389 if (isblank ((unsigned char)p[-1]))
function.c 117 && ((p > text && !isblank ((unsigned char)p[-1]))
118 || (p[slen] != '\0' && !isblank ((unsigned char)p[slen]))))
268 if (*e == '\0' || isblank ((unsigned char) *e))
    [all...]
job.c 1006 else if (!isblank ((unsigned char)*p))
    [all...]
  /external/mesa3d/src/glsl/glcpp/
pp.c 28 #include "main/core.h" /* for isblank() on MSVC */
78 for (ptr--; ptr >= shader && isblank(*ptr); ptr--);
  /external/openssh/openbsd-compat/
bsd-misc.c 245 int isblank(int c) function
  /ndk/sources/host-tools/make-3.81/w32/
pathstuff.c 36 if (isblank ((unsigned char) *etok))
  /external/libxml2/
trio.c 93 # define isblank(x) (((x)==32) || ((x)==9)) macro
167 # define iswblank(x) isblank(x)
    [all...]
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 67 # ifdef isblank
68 # define ISBLANK(c) (ISASCII (c) && isblank (c))
70 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
378 || (STREQ (str, "blank") && ISBLANK ((unsigned char) *n))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ctype.h 128 __exctype (isblank);
186 # define isblank(c) __isctype((c), _ISblank) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
ctype.h 128 __exctype (isblank);
186 # define isblank(c) __isctype((c), _ISblank) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
ctype.h 128 __exctype (isblank);
186 # define isblank(c) __isctype((c), _ISblank) macro
  /ndk/sources/host-tools/nawk-20071023/
FIXES 172 added some parens to isblank, in another attempt to make things
180 of national language. isblank(){} has an #ifndef.
200 the function isblank doesn't seem to have propagated to any
    [all...]
  /bionic/libc/stdlib/
ctype_.c 138 int isblank(int c) function
wchar.c 130 case WC_TYPE_BLANK: return isblank(wc);
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 53 /* In case that the system doesn't have isblank(). */
54 #if !defined _LIBC && ! (defined isblank || (HAVE_ISBLANK && HAVE_DECL_ISBLANK))
55 # define isblank(ch) ((ch) == ' ' || (ch) == '\t') macro
  /external/mesa3d/src/mesa/main/
imports.h 156 static INLINE int isblank(int ch) { return ch == ' ' || ch == '\t'; } function

Completed in 247 milliseconds

12 3