Searched refs:isspace (Results 176 - 200 of 486) sorted by relevance

1234567891011>>

/freebsd-10.3-release/sys/boot/ficl/
H A Dvm.c310 ** does not use vmParseString because it uses isspace() rather than a
325 for (ch = *pSrc; (pEnd != pSrc) && !isspace(ch); ch = *++pSrc)
337 if (isspace(ch))
345 if ((pEnd != pSrc) && isspace(ch)) /* skip one trailing delimiter */
799 while ((cp != end) && isspace(*cp))
/freebsd-10.3-release/usr.sbin/ngctl/
H A Dmain.c558 for (s = buf; *s != '\0' && !isspace(*s); s++);
589 while (isspace(*s))
597 && !isspace(buf[len-1]))
/freebsd-10.3-release/usr.sbin/pkg_install/lib/
H A Dplist.c199 if (isspace(*cp)) {
201 while (isspace(*sp)) /* Never sure if macro, increment later */
271 while (len && isspace(pline[len - 1]))
/freebsd-10.3-release/contrib/libstdc++/include/bits/
H A Dlocalefwd.h58 isspace(_CharT, const locale&);
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt_long.c43 #define SKIPWS(p) while (isspace((int)(*p))) p++
/freebsd-10.3-release/crypto/heimdal/lib/asn1/
H A Dasn1_gen.c85 while (isspace((unsigned char)*ptr))
/freebsd-10.3-release/crypto/heimdal/appl/login/
H A Dlogin_access.c94 while (end > 0 && isspace((unsigned char)line[end - 1]))
/freebsd-10.3-release/crypto/heimdal/appl/rsh/
H A Dlogin_access.c94 while (end > 0 && isspace((unsigned char)line[end - 1]))
/freebsd-10.3-release/contrib/sendmail/src/
H A Dalias.c276 while (isascii(*p) && isspace(*p))
739 while (isascii(*p) && isspace(*p))
757 while ((isascii(*p) && isspace(*p)) ||
824 while (isascii(*p) && isspace(*p))
/freebsd-10.3-release/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c83 while (end > 0 && isspace(line[end - 1]))
/freebsd-10.3-release/lib/libc/gen/
H A Dgetusershell.c128 while (!isspace(*cp) && *cp != '#' && *cp != '\0')
/freebsd-10.3-release/crypto/openssh/openbsd-compat/
H A Dfmt_scaled.c84 while (isascii(*p) && isspace(*p))
/freebsd-10.3-release/contrib/dialog/
H A Ddlg_keys.c462 while (*s != '\0' && isspace(UCH(*s)))
470 while (*s != '\0' && !isspace(UCH(*s)))
632 } else if (isspace(UCH(*p))) {
637 if (!isspace(UCH(*p))) {
/freebsd-10.3-release/contrib/diff/lib/
H A Dexclude.c53 return IN_CTYPE_DOMAIN (c) && isspace (c);
/freebsd-10.3-release/cddl/compat/opensolaris/misc/
H A Dmnttab.c52 while (*cp && isspace(*cp))
/freebsd-10.3-release/sys/cddl/dev/dtmalloc/
H A Ddtmalloc.c124 if (isspace(name[i]))
/freebsd-10.3-release/gnu/usr.bin/grep/
H A Dxstrtol.c77 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
/freebsd-10.3-release/usr.bin/patch/
H A Dpatch.c1063 if (isspace((unsigned char)*b)) { /* whitespace (or \n) to match? */
1064 if (!isspace((unsigned char)*a)) /* no corresponding whitespace? */
1066 while (len && isspace((unsigned char)*b) && *b != '\n')
1068 while (isspace((unsigned char)*a) && *a != '\n')
/freebsd-10.3-release/usr.sbin/bsdinstall/partedit/
H A Dscripted.c152 if (isspace(*input)) {
/freebsd-10.3-release/usr.bin/finger/
H A Dnet.c183 if (!isprint(c) && !isspace(c)) {
/freebsd-10.3-release/contrib/gdb/gdb/
H A Dtracepoint.c709 while (*args && isspace ((int) *args))
921 for (p = *line; isspace ((int) *p);)
946 while (isspace ((int) *p))
1009 while (isspace ((int) *p))
1510 while (isspace ((int) *action_exp))
1525 while (isspace ((int) *action_exp))
2202 while (isspace ((int) *tmp))
2241 while (isspace ((int) *tmp))
2310 while (isspace ((int) *actionline))
2526 while (isspace ((in
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.cpp454 if (::isspace (end_options[0]))
457 while (::isspace (*expr))
/freebsd-10.3-release/contrib/xz/src/xz/
H A Dargs.c526 // value gets passed to isspace(), which expects
532 if (isspace((unsigned char)env[i])) {
558 if (isspace((unsigned char)env[i])) {
/freebsd-10.3-release/contrib/sendmail/editmap/
H A Deditmap.c57 #define ISSEP(c) (isascii(c) && isspace(c))
232 while (isascii(*++b) && isspace(*b))
/freebsd-10.3-release/lib/libdpv/
H A Ddialog_util.c552 while (n > 1 && !isspace(*cp)) {
556 if (n > 0 && isspace(*cp))

Completed in 303 milliseconds

1234567891011>>