HomeSort by: relevance | last modified time | path
    Searched refs:ch_isspace (Results 1 - 15 of 15) sorted by relevancy

  /src/usr.bin/make/
for.c 81 if (ch_isspace(*p))
161 for (start = p; *p != '\0' && !ch_isspace(*p); p++)
218 return p[0] == 'f' && p[1] == 'o' && p[2] == 'r' && ch_isspace(p[3]);
225 (p[6] == '\0' || ch_isspace(p[6]));
parse.c 965 if ((ch_isspace(*p) || *p == '!' || *p == ':' || *p == '(')
1513 while (*end != '\0' && !ch_isspace(*end))
1563 for (; *end != '\0' && !ch_isspace(*end); end++) {
1756 while (op > name && ch_isspace(op[-1]))
2209 return !sysv || ch_isspace(dir[7]);
2230 if (*p == ':' || ch_isspace(*p))
2255 for (p = file; *p != '\0' && !ch_isspace(*p); p++)
2431 if (!ch_isspace(ch))
2486 while (dst > spaceStart && ch_isspace(dst[-1]))
2548 assert(ch_isspace(*line_end))
    [all...]
make.h 1195 ch_isspace(char ch) { return isspace((unsigned char)ch) != 0; } function
1206 while (ch_isspace(**pp))
1231 while (ch_isspace(**pp))
compat.c 167 if (ch_isspace(*p)) {
304 else if (!ch_isspace(*cmd))
job.c 821 else if (!ch_isspace(*p))
978 if (p == cmd || p[-1] == '/' || ch_isspace(p[-1])) {
979 if (p[len] == '\0' || ch_isspace(p[len])) {
arch.c 241 while (*cp != '\0' && *cp != ')' && !ch_isspace(*cp)) {
cond.c 366 return ch == '\0' || ch_isspace(ch) || ch == '!' || ch == '=' ||
var.c 563 if (ch_isspace(value[strlen(value) - 1]))
1842 if (ch_isspace(*p) || ch_is_shell_meta(*p))
3168 if (i == 0 || ch_isspace(res[i - 1]))
4402 if (ch_isspace(*p))
  /src/usr.bin/xlint/common/
lint.h 193 ch_isspace(char ch) function
  /src/usr.bin/indent/
args.c 282 } else if (ch_isspace((char)ch)) {
indent.h 541 ch_isspace(char ch) function
lexi.c 349 && (ch_isspace(*p) || is_identifier_part(*p)))
508 if (ch_isspace(*p))
523 while (*in.p == '*' || ch_isspace(*in.p)) {
pr_comment.c 188 if (ch_isspace(com.s[com.len - 1]))
io.c 337 while (com.s + com.len > p && ch_isspace(com.s[com.len - 1]))
  /src/usr.bin/xlint/lint1/
lex.c 1029 while (ch_isspace(*p))
1033 while (*p != '\0' && !ch_isspace(*p))
1291 while (l > 0 && ch_isspace(keywd[l - 1]))

Completed in 35 milliseconds