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

1 2 34 5 6 7 8 91011

  /bionic/libc/stdlib/
strtoumax.c 56 } while (isspace(c));
wchar.c 128 int iswspace(wint_t wc) { return isspace(wc); }
144 case WC_TYPE_SPACE: return isspace(wc);
  /external/e2fsprogs/intl/
plural-exp.c 119 while (*nplurals != '\0' && isspace ((unsigned char) *nplurals))
  /external/icu4c/test/perf/charperf/
charperf.h 139 inline void isSpace(UChar32 ch)
  /external/ipsec-tools/src/racoon/
str2val.c 94 else if (isspace((int)*p))
localconf.c 203 for (p = buf; *p != '\0' && !isspace((int)*p); p++)
209 while (isspace((int)*++p))
backupsa.c 241 for (q = p; *q != '\0' && !isspace((int)*q); q++)
248 for (q = p; *q != '\0' && !isspace((int)*q); q++)
258 for (q = p; *q != '\0' && !isspace((int)*q); q++) \
  /external/sonivox/arm-fm-22k/lib_src/
eas_ctype.h 36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); }
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_ctype.h 36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); }
  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); }
  /external/webkit/JavaScriptCore/wtf/unicode/wince/
UnicodeWince.cpp 50 bool isSpace(wchar_t c)
  /hardware/ril/reference-ril/
at_tok.c 52 while (**p_cur != '\0' && isspace(**p_cur)) {
  /system/core/init/
property_service.c 424 while(isspace(*key)) key++;
427 while((tmp > key) && isspace(*tmp)) *tmp-- = 0;
429 while(isspace(*value)) value++;
431 while((tmp > value) && isspace(*tmp)) *tmp-- = 0;
  /external/e2fsprogs/misc/
e2initrd_helper.c 166 while (*cp && isspace(*cp))
173 while (*cp && !isspace(*cp))
  /external/elfutils/src/
ldlex.l 236 if (empty && ! isspace (c) && ! warned)
295 if (isspace (c) && ignore_ws)
  /external/grub/stage2/
fsys_ffs.c 202 if (!*dirname || isspace (*dirname))
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
fsys_ufs2.c 227 if (!*dirname || isspace (*dirname))
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
fsys_minix.c 367 while (dirname[len] && !isspace (dirname[len]))
414 if (!*dirname || isspace (*dirname))
442 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
fsys_jfs.c 315 if (!*dirname || isspace (*dirname)) {
332 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
  /external/srec/portable/include/
ptypes.h 305 * LCHAR version of isspace()
307 #define LISSPACE(c) isspace((unsigned char) c)
  /external/opencore/protocols/rtsp_parcom/src/
rtsp_par_com_incoming_message.cpp 196 //// while( ! isspace(*endOfString) )
232 //// while( isspace(*secondaryBufferSpace) )
244 //// while( ! isspace( *secondaryBufferSpace ) )
249 //// while( isspace( *secondaryBufferSpace ) )
377 //// while( isspace( *secondaryBufferSpace ) )
383 //// while( ! isspace( *endOfString ) )
401 //// while( isspace( *secondaryBufferSpace ) )
406 //// while( !isspace(*endOfString) )
974 // for (; startPtr < final_end && isspace(*startPtr); ++startPtr);
    [all...]
  /bionic/libc/stdio/
vfscanf.c 129 if (isspace(c)) {
131 isspace(*fp->_p))
316 while (isspace(*fp->_p)) {
417 while (!isspace(*fp->_p)) {
427 while (!isspace(*fp->_p)) {
  /bionic/libc/netbsd/net/
base64.c 231 if (isspace(ch)) /* Skip whitespace anywhere. */
303 if (!isspace(ch))
318 if (!isspace(ch))
  /development/simulator/wrapsim/
DevLog.c 94 while (isspace(*tags))
98 while (*tags != '\0' && !isspace(*tags) && *tags != ':' &&
137 if (*tags != '\0' && !isspace(*tags)) {
  /bionic/libc/inet/
inet_aton.c 121 if (c != '\0' && (!isascii(c) || !isspace(c)))

Completed in 872 milliseconds

1 2 34 5 6 7 8 91011