HomeSort by relevance Sort by last modified time
    Searched full:isspace (Results 51 - 75 of 266) sorted by null

1 23 4 5 6 7 8 91011

  /external/ppp/pppd/plugins/radius/
clientid.c 48 #define SKIP(p) while(*p && isspace(*p)) p++;
  /bionic/libc/include/
ctype.h 80 int isspace(int);
142 __CTYPE_INLINE int isspace(int c) function
  /external/e2fsprogs/lib/e2p/
feature.c 149 while (*cp && isspace(*cp))
156 while (*cp && !isspace(*cp) && *cp != ',')
  /external/e2fsprogs/misc/
ismounted.c 41 while (*cp && isspace(*cp))
48 while (*cp && !isspace(*cp))
  /external/grub/stage2/
fsys_vstafs.c 140 while ((ch = *fn) && ch != '/' && ! isspace (ch)) fn++;
181 while (*dirname && ! isspace (ch));
  /external/icu4c/samples/layout/
FontMap.cpp 178 while (start < len && isspace(s[start])) {
184 while (end > start && isspace(s[end])) {
  /external/icu4c/tools/pkgdata/
pkgtypes.c 259 while(s<targ&&isspace(*s)) s++;
260 for(p=s;s<targ&&!isspace(*p);p++);
  /external/iptables/extensions/
libipt_realm.c 79 if (!isspace(*cur))
86 while ((*nxt != 0) && !isspace(*nxt))
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 144 if (!isspace(c))
153 if (c == EOF || isspace(c)) {
  /frameworks/base/media/libstagefright/
HTTPStream.cpp 270 while (end_of_key > line && isspace(end_of_key[-1])) {
275 while (isspace(*start_of_value)) {
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 201 for (ptr = line; isspace(*ptr); ptr++); \
205 while (end > ptr && isspace(end[-1])) *--end = '\0'; \
206 if (file && !strncmp(ptr, "_ERR", 4) && isspace(ptr[4])) { \
208 while (isspace(*ptr)) ptr++; \
210 } else if (file && !strncmp(ptr, "_OUT", 4) && isspace(ptr[4])) { \
212 while (isspace(*ptr)) ptr++; \
214 } else if (!strncmp(ptr, "_LEVEL", 6) && isspace(ptr[6])) { \
216 while (isspace(*ptr)) ptr++; \
  /ndk/build/platforms/android-3/arch-arm/usr/include/
ctype.h 80 int isspace(int);
142 __CTYPE_INLINE int isspace(int c) function
  /ndk/build/platforms/android-4/arch-arm/usr/include/
ctype.h 80 int isspace(int);
142 __CTYPE_INLINE int isspace(int c) function
  /ndk/build/platforms/android-5/arch-arm/usr/include/
ctype.h 80 int isspace(int);
142 __CTYPE_INLINE int isspace(int c) function
  /ndk/build/platforms/android-5/arch-x86/usr/include/
ctype.h 76 int isspace(int);
138 __CTYPE_INLINE int isspace(int c) function
  /ndk/build/platforms/android-8/arch-arm/usr/include/
ctype.h 80 int isspace(int);
142 __CTYPE_INLINE int isspace(int c) function
  /ndk/build/platforms/android-8/arch-x86/usr/include/
ctype.h 80 int isspace(int);
142 __CTYPE_INLINE int isspace(int c) function
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 146 while (isspace(*cp))
153 while (isspace(*indentEnd))
192 while (isspace(*cp))
207 while (isspace(*cp)) {
220 while (isspace(*cp))
  /packages/experimental/procstatlog/
procstatlog.c 90 while (len > 0 && isspace(buf[len - 1])) --len;
133 while (isspace(*line)) ++line;
136 while (isspace(*line)) ++line;
151 while (isspace(*value)) ++value;
202 while (*value == '.' || isspace(*value)) ++value;
  /external/icu4c/tools/gencnval/
gencnval.c 333 if (lineSize == 0 || (lastLineSize > 0 && isspace(*lastLine))) {
344 if (isspace(*line)) {
389 if (!isspace(*s)) {
408 /* while(line[pos]!=0 && isspace(line[pos])) {
420 while(line[pos]!=0 && !isspace(line[pos])) {
439 while(line[pos]!=0 && isspace(line[pos])) {
450 while(line[pos]!=0 && line[pos]!='{' && !isspace(line[pos])) {
472 while (line[pos] && isspace(line[pos])) {
481 while (line[pos] && line[pos] != '}' && !isspace( line[pos])) {
492 while (line[pos] && isspace(line[pos]))
    [all...]
  /bionic/libc/tzcode/
strptime.c 122 if (isspace(c)) {
123 while (isspace(*bp))
378 while (isspace(*bp))
  /external/e2fsprogs/lib/blkid/
read.c 62 while (*cp && isspace(*cp))
80 if (isspace(ch) || ch == '<' || ch == '>')
96 if (isspace(*p))
  /external/jpeg/
rdswitch.c 17 #include <ctype.h> /* to declare isdigit(), isspace() */
52 } while (isspace(ch));
139 while (ch != EOF && isspace(ch))
  /bionic/libc/stdlib/
strntoumax.c 58 while (p < end && isspace(*p))
strtoul.c 56 } while (isspace(c));

Completed in 1750 milliseconds

1 23 4 5 6 7 8 91011