Searched refs:isspace (Results 1 - 25 of 180) sorted by relevance

12345678

/external/valgrind/main/coregrind/m_ume/
H A Dscript.c57 while (interp < end && VG_(isspace)(*interp)) interp++;
68 if (VG_(isspace)(*interp)) return False;
103 while (interp < end && VG_(isspace)(*interp))
109 for (cp = interp; cp < end && !VG_(isspace)(*cp); cp++)
118 while (cp < end && VG_(isspace)(*cp) && *cp != '\n')
/external/webkit/Source/JavaScriptCore/wtf/
H A DDisallowCType.h50 #undef isspace macro
67 #define isspace isspace_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
/external/oprofile/libpopt/
H A Dpoptconfig.c33 if (*line == '\0' || !isspace(*line)) return;
35 while (*line != '\0' && isspace(*line)) line++;
37 while (*line == '\0' || !isspace(*line)) line++;
40 while (*line != '\0' && isspace(*line)) line++;
43 while (*line == '\0' || !isspace(*line)) line++;
46 while (*line != '\0' && isspace(*line)) line++;
137 while (*dst && isspace(*dst)) dst++;
/external/dbus/tools/
H A Dstrtoll.c40 #ifndef isspace
41 #define isspace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro
81 } while (isspace((unsigned char)c));
H A Dstrtoull.c40 #ifndef isspace
41 #define isspace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro
80 } while (isspace((unsigned char)c));
/external/libpcap/
H A Detherent.c71 } while (isspace(c) && c != '\n');
128 if (!isspace(c)) {
150 } while (!isspace(c) && c != EOF && --d > 0);
/external/openssl/crypto/asn1/
H A Dasn_moid.c128 while(isspace((unsigned char)*ostr)) ostr++;
139 while(isspace((unsigned char)*ln)) ln++;
141 while(isspace((unsigned char)*p))
/external/stlport/stlport/stl/
H A D_cctype.h40 using _STLP_VENDOR_CSTD::isspace;
/external/srec/config/en.us/dictionary/
H A Dcmu2nuance.cpp35 if (strncmp(phone, cmu, ncmu) || !isspace(phone[ncmu])) return NULL;
58 while (!isspace(*p)) {
63 if (p[0] == '(' && isdigit(p[1]) && p[2] == ')' && isspace(p[3])) {
75 while (isspace(*p)) p++;
/external/chromium/net/tools/flip_server/
H A Dstring_piece_utils.h48 while (c != e && isspace(*c)) {
56 while (c != e &&isspace(*e)) {
/external/e2fsprogs/e2fsck/
H A Dargv_parse.c60 if (isspace((int) ch))
85 if (isspace((int) ch)) {
/external/e2fsprogs/lib/e2p/
H A Dmntopts.c79 while (*cp && isspace(*cp))
86 while (*cp && !isspace(*cp) && *cp != ',')
/external/pcre/
H A Dpcre_maketables.c94 for "space" includes everything "isspace" gives, including VT in the default
109 if (isspace(i)) p[cbit_space + i/8] |= 1 << (i&7);
125 if (i != 0x0b && isspace(i)) x += ctype_space;
/external/openssl/crypto/ocsp/
H A Docsp_ht.c195 for(p = line; *p && !isspace((unsigned char)*p); p++)
205 while(*p && isspace((unsigned char)*p))
216 for(q = p; *q && !isspace((unsigned char)*q); q++)
236 while(*q && isspace((unsigned char)*q))
245 for(r = q + strlen(q) - 1; isspace((unsigned char)*r); r--)
/external/e2fsprogs/misc/
H A Dismounted.c44 while (*cp && isspace(*cp))
51 while (*cp && !isspace(*cp))
/external/stlport/stlport/
H A Dctype.h51 # undef isspace macro
76 __inline int (isspace)(int c) { return _isctype(c, _SPACE); } function
/external/e2fsprogs/intl/
H A Dlocalealias.c264 while (isspace ((unsigned char) cp[0]))
271 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
278 while (isspace ((unsigned char) cp[0]))
287 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
/external/e2fsprogs/lib/
H A Dfpopen.c75 if (isspace(*p)) {
/external/ipsec-tools/src/racoon/
H A Dstr2val.c94 else if (isspace((int)*p))
/external/kernel-headers/original/linux/
H A Dctype.h30 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
/external/ppp/pppd/plugins/radius/
H A Dclientid.c48 #define SKIP(p) while(*p && isspace(*p)) p++;
/external/grub/stage2/
H A Dfsys_ffs.c202 if (!*dirname || isspace (*dirname))
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
H A Dfsys_ufs2.c227 if (!*dirname || isspace (*dirname))
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
H A Dfsys_vstafs.c140 while ((ch = *fn) && ch != '/' && ! isspace (ch)) fn++;
181 while (*dirname && ! isspace (ch));
/external/valgrind/main/coregrind/
H A Dm_commandline.c103 while (VG_(isspace)(*cp)) cp++;
106 while ( !VG_(isspace)(*cp) && *cp != 0 ) cp++;

Completed in 396 milliseconds

12345678