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]))
2251 return !sysv || ch_isspace(dir[7]);
2272 if (*p == ':' || ch_isspace(*p))
2297 for (p = file; *p != '\0' && !ch_isspace(*p); p++)
2473 if (!ch_isspace(ch))
2528 while (dst > spaceStart && ch_isspace(dst[-1]))
2590 assert(ch_isspace(*line_end))
    [all...]
make.h 1191 ch_isspace(char ch) { return isspace((unsigned char)ch) != 0; } function in typeref:typename:MAKE_INLINE bool MAKE_ATTR_USE
1202 while (ch_isspace(**pp))
1227 while (ch_isspace(**pp))
compat.c 167 if (ch_isspace(*p)) {
304 else if (!ch_isspace(*cmd))
arch.c 241 while (*cp != '\0' && *cp != ')' && !ch_isspace(*cp)) {
cond.c 366 return ch == '\0' || ch_isspace(ch) || ch == '!' || ch == '=' ||
var.c 555 if (ch_isspace(value[strlen(value) - 1]))
1838 if (ch_isspace(*p) || ch_is_shell_meta(*p))
3157 if (i == 0 || ch_isspace(res[i - 1]))
4351 if (ch_isspace(*p))
job.c 821 else if (!ch_isspace(*p))
  /src/usr.bin/xlint/common/
lint.h 195 ch_isspace(char ch) function in typeref:typename:bool
  /src/usr.bin/indent/
lexi.c 349 && (ch_isspace(*p) || is_identifier_part(*p)))
508 if (ch_isspace(*p))
523 while (*in.p == '*' || ch_isspace(*in.p)) {
args.c 282 } else if (ch_isspace((char)ch)) {
pr_comment.c 188 if (ch_isspace(com.s[com.len - 1]))
indent.h 541 ch_isspace(char ch) function in typeref:typename:bool
io.c 337 while (com.s + com.len > p && ch_isspace(com.s[com.len - 1]))
  /src/usr.bin/xlint/lint1/
lex.c 1033 while (ch_isspace(*p))
1037 while (*p != '\0' && !ch_isspace(*p))
1295 while (l > 0 && ch_isspace(keywd[l - 1]))

Completed in 26 milliseconds