HomeSort by relevance Sort by last modified time
    Searched refs:isspace (Results 126 - 150 of 224) sorted by null

1 2 3 4 56 7 8 9

  /external/jpeg/
ansi2knr.c 304 #define is_space(c) (is_ascii(c) && isspace(c))
  /external/ppp/pppd/
srp-entry.c 166 if (isspace(*cp))
  /external/qemu/
qemu-common.h 126 #define qemu_isspace(c) isspace((unsigned char)(c))
  /external/skia/src/ports/
SkXMLPullParser_expat.cpp 115 if (!isspace(*s))
  /frameworks/base/cmds/installd/
installd.c 198 if (isspace(*cmd)) {
  /frameworks/base/tools/aidl/
aidl.cpp 124 while (isspace(*text)) {
127 while (!isspace(*text)) {
130 while (isspace(*text)) {
134 while (!isspace(*end) && *end != ';') {
  /external/e2fsprogs/e2fsck/
profile.c 628 while (*cp && isspace((int) (*cp)))
640 while (!end_or_comment(*cp) && !isspace(*cp))
724 while (isspace(*p) && (p > cp))
843 if (isspace((int) (*str)) ||isspace((int) (*(str + strlen(str) - 1))))
    [all...]
  /external/clearsilver/cgi/
html.c 502 while (ol && isspace(str->buf[ol-1]))
516 while (x && isspace(str->buf[x]) && (str->buf[x] != '\n')) x--;
  /external/grub/stage2/
fsys_xfs.c 574 if (!*dirname || isspace (*dirname)) {
591 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
stage2.c 587 while (! isspace (*pptr) && *pptr)
596 while (isspace (*pptr))
fsys_iso9660.c 158 && !isspace(dirname[pathlen]) && dirname[pathlen] != '/' ;
fsys_reiserfs.c 1042 while (dirname[len] && !isspace (dirname[len]))
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 312 while (la > 0 && isspace(*pa))
317 while (lb > 0 && isspace(*pb))
324 while (la > 0 && isspace(pa[la-1]))
326 while (lb > 0 && isspace(pb[lb-1]))
347 if (isspace(*pa) && isspace(*pb))
350 while (la > 0 && isspace(*pa))
355 while (lb > 0 && isspace(*pb))
    [all...]
  /external/openssl/crypto/x509v3/
v3_utl.c 347 while(*p && isspace((unsigned char)*p)) p++;
350 while((q != p) && isspace((unsigned char)*q)) q--;
  /external/openssl/
e_os.h 302 # if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
304 # undef isspace macro
  /system/core/fastboot/
fastboot.c 328 while(*s && isspace(*s)) s++;
331 if(!isspace(s[n])) break;
  /external/bison/lib/
strtol.c 205 # define ISSPACE(Ch) __iswspace_l ((Ch), loc)
209 # define ISSPACE(Ch) iswspace (Ch)
223 # define ISSPACE(Ch) __isspace_l ((Ch), loc)
227 # define ISSPACE(Ch) (IN_CTYPE_DOMAIN (Ch) && isspace (Ch))
304 while (ISSPACE (*s))
  /external/ppp/pppd/plugins/radius/
config.c 229 while (isspace(*p))
  /external/tcpdump/
print-esp.c 229 while (isspace((unsigned char)*decode))
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
standalone.py 306 if line[0] == '#' or line.isspace():
  /frameworks/base/media/libstagefright/rtsp/
AMPEG4ElementaryAssembler.cpp 43 while (isspace(*s)) {
  /system/core/init/
util.c 442 while (*x && !isspace(*x)) {
  /system/core/libacc/tests/data/
otcc-ansi.c 33 while (isspace(h) | h == 35) {
  /external/dnsmasq/src/
dhcp.c 761 while (strlen(buff) > 0 && isspace((int)buff[strlen(buff)-1]))
767 for (ip = buff; *ip && !isspace((int)*ip); ip++);
768 for(; *ip && isspace((int)*ip); ip++)
  /external/openssl/crypto/asn1/
asn_mime.c 668 if(mhdr && isspace((unsigned char)linebuf[0])) state = MIME_NAME;
772 if(!isspace((unsigned char)c)) return p;
790 if(isspace((unsigned char)c)) *p = 0;

Completed in 1101 milliseconds

1 2 3 4 56 7 8 9