Home
last modified time | relevance | path

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

/dragonfly/games/cgram/
HDcgram.c71 ch_isspace(char ch) in ch_isspace() function
432 while (can_go_left() && ch_isspace(char_left_of_cursor())) in go_to_prev_word()
435 while (can_go_left() && !ch_isspace(char_left_of_cursor())) in go_to_prev_word()
442 while (can_go_right() && !ch_isspace(char_at_cursor())) in go_to_next_word()
445 while (can_go_right() && ch_isspace(char_at_cursor())) in go_to_next_word()
/dragonfly/contrib/bmake/
HDfor.c143 for (len = 1; p[len] != '\0' && !ch_isspace(p[len]); len++) in ForLoop_ParseVarnames()
196 return p[0] == 'f' && p[1] == 'o' && p[2] == 'r' && ch_isspace(p[3]); in IsFor()
203 (p[6] == '\0' || ch_isspace(p[6])); in IsEndfor()
HDparse.c896 if ((ch_isspace(*cp) || *cp == '!' || *cp == ':' || in ParseDependencyTargetWord()
1414 while (*end != '\0' && !ch_isspace(*end)) in ParseDependencySourcesSpecial()
1468 for (; *end != '\0' && !ch_isspace(*end); end++) { in ParseDependencySourcesMundane()
1651 while (op > name && ch_isspace(op[-1])) in AdjustVarassignOp()
2181 return !sysv || ch_isspace(dir[7]); in IsInclude()
2203 if (*p == ':' || ch_isspace(*p)) in IsSysVInclude()
2228 for (cp = file; *cp != '\0' && !ch_isspace(*cp); cp++) in ParseTraditionalInclude()
2395 if (!ch_isspace(ch)) in ParseRawLine()
2450 while (dst > spaceStart && ch_isspace(dst[-1])) in UnescapeBackslash()
2512 assert(ch_isspace(*line_end)); in ReadLowLevelLine()
[all …]
HDmake.h1178 ch_isspace(char ch) { return isspace((unsigned char)ch) != 0; } in ch_isspace() function
1189 while (ch_isspace(**pp)) in cpp_skip_whitespace()
1214 while (ch_isspace(**pp)) in pp_skip_whitespace()
HDcompat.c173 if (ch_isspace(*p)) { in DebugFailedTarget()
291 while (ch_isspace(*cmd)) in Compat_RunCommand()
HDarch.c301 while (*cp != '\0' && *cp != ')' && !ch_isspace(*cp)) { in Arch_ParseArchive()
HDcond.c377 return ch == '\0' || ch_isspace(ch) || ch == '!' || ch == '=' || in is_separator()
HDvar.c486 if (ch_isspace(value[strlen(value) - 1])) in ValueDescription()
1822 if (ch_isspace(*p) || ch_is_shell_meta(*p)) in VarQuote()