Home
last modified time | relevance | path

Searched refs:ch_isspace (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/bmake/
H A Dfor.c81 if (ch_isspace(*p)) in skip_whitespace_or_line_continuation()
164 for (len = 0; p[len] != '\0' && !ch_isspace(p[len]); len++) { in ForLoop_ParseVarnames()
223 return p[0] == 'f' && p[1] == 'o' && p[2] == 'r' && ch_isspace(p[3]); in IsFor()
230 (p[6] == '\0' || ch_isspace(p[6])); in IsEndfor()
H A Dparse.c915 if ((ch_isspace(*p) || *p == '!' || *p == ':' || *p == '(') in ParseDependencyTargetWord()
1461 while (*end != '\0' && !ch_isspace(*end)) in ParseDependencySourcesSpecial()
1511 for (; *end != '\0' && !ch_isspace(*end); end++) { in ParseDependencySourcesMundane()
1704 while (op > name && ch_isspace(op[-1])) in AdjustVarassignOp()
2199 return !sysv || ch_isspace(dir[7]); in IsInclude()
2220 if (*p == ':' || ch_isspace(*p)) in IsSysVInclude()
2245 for (p = file; *p != '\0' && !ch_isspace(*p); p++) in ParseTraditionalInclude()
2421 if (!ch_isspace(ch)) in ParseRawLine()
2476 while (dst > spaceStart && ch_isspace(dst[-1])) in UnescapeBackslash()
2538 assert(ch_isspace(*line_end)); in ReadLowLevelLine()
[all …]
H A Dcompat.c169 if (ch_isspace(*p)) { in DebugFailedTarget()
306 else if (!ch_isspace(*cmd)) in Compat_RunCommand()
312 while (ch_isspace(*cmd)) in Compat_RunCommand()
H A Dmake.h1210 ch_isspace(char ch) { return isspace((unsigned char)ch) != 0; }
1221 while (ch_isspace(**pp)) in cpp_skip_whitespace()
1246 while (ch_isspace(**pp)) in pp_skip_whitespace()
1211 ch_isspace(char ch) { return isspace((unsigned char)ch) != 0; } ch_isspace() function
H A Darch.c289 while (*cp != '\0' && *cp != ')' && !ch_isspace(*cp)) { in Arch_ParseArchive()
H A Dcond.c374 return ch == '\0' || ch_isspace(ch) || ch == '!' || ch == '=' || in is_separator()
H A Dvar.c551 if (ch_isspace(value[strlen(value) - 1])) in ValueDescription()
1829 if (ch_isspace(*p) || ch_is_shell_meta(*p)) in QuoteShell()
3163 if (i == 0 || ch_isspace(res[i - 1])) in str_totitle()
H A Djob.c747 else if (!ch_isspace(*p)) in ParseCommandFlags()