Home
last modified time | relevance | path

Searched refs:ISSPACE (Results 1 – 25 of 74) sorted by relevance

123

/dragonfly/contrib/diffutils/lib/
H A Dprepargs.c38 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
54 while (ISSPACE ((unsigned char) *o)) in prepend_args()
65 while (*o && ! ISSPACE ((unsigned char) *o)); in prepend_args()
/dragonfly/contrib/cvs-1.12/diff/
H A Dutil.c448 while (ISSPACE (c1) && c1 != '\n') c1 = *t1++;
449 while (ISSPACE (c2) && c2 != '\n') c2 = *t2++;
456 if (ISSPACE (c1))
461 if (! ISSPACE (c1))
471 if (ISSPACE (c2))
476 if (! ISSPACE (c2))
492 && ISSPACE(t1[-2]))
499 && ISSPACE(t2[-2]))
H A Dio.c224 if (! ISSPACE (c))
230 if (ISSPACE (c))
235 if (!ISSPACE (c))
254 if (! ISSPACE (c))
260 if (ISSPACE (c))
265 if (!ISSPACE (c))
H A Dsystem.h220 #ifndef ISSPACE
221 #define ISSPACE(c) (CTYPE_DOMAIN (c) && isspace (c)) macro
/dragonfly/contrib/binutils-2.27/libiberty/
H A Dargv.c114 while (ISSPACE (**input)) in consume_whitespace()
123 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
211 if (ISSPACE (*input) && !squote && !dquote && !bsquote) in buildargv()
308 if (ISSPACE(c) || c == '\\' || c == '\'' || c == '"') in writeargv()
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dargv.c121 while (ISSPACE (**input)) in consume_whitespace()
130 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
218 if (ISSPACE (*input) && !squote && !dquote && !bsquote) in buildargv()
315 if (ISSPACE(c) || c == '\\' || c == '\'' || c == '"') in writeargv()
/dragonfly/contrib/gdb-7/libiberty/
H A Dargv.c118 while (ISSPACE (**input)) in consume_whitespace()
127 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
215 if (ISSPACE (*input) && !squote && !dquote && !bsquote) in buildargv()
312 if (ISSPACE(c) || c == '\\' || c == '\'' || c == '"') in writeargv()
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dargv.c121 while (ISSPACE (**input)) in consume_whitespace()
130 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
218 if (ISSPACE (*input) && !squote && !dquote && !bsquote) in buildargv()
315 if (ISSPACE(c) || c == '\\' || c == '\'' || c == '"') in writeargv()
/dragonfly/contrib/gcc-4.7/libiberty/
H A Dargv.c125 while (ISSPACE (**input)) in consume_whitespace()
134 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
231 if (ISSPACE (*input) && !squote && !dquote && !bsquote) in buildargv()
332 if (ISSPACE(c) || c == '\\' || c == '\'' || c == '"') in writeargv()
/dragonfly/contrib/nvi2/common/
H A Dmultibyte.h51 #define ISSPACE iswspace macro
85 #define ISSPACE isspace macro
/dragonfly/contrib/binutils-2.34/gas/
H A Dinput-file.c174 && !strncmp (buf, "O_APP", 5) && ISSPACE (buf[5])) in input_file_open()
184 && !strncmp (buf, "PP", 2) && ISSPACE (buf[2])) in input_file_open()
/dragonfly/contrib/binutils-2.27/gas/
H A Dinput-file.c174 && !strncmp (buf, "O_APP", 5) && ISSPACE (buf[5])) in input_file_open()
184 && !strncmp (buf, "PP", 2) && ISSPACE (buf[2])) in input_file_open()
/dragonfly/contrib/tcsh-6/
H A Dgethost.c50 #define ISSPACE(p) (isspace((unsigned char) (p)) && (p) != '\n') macro
123 for (; *ptr && ISSPACE(*ptr); ptr++) in gettoken()
134 for (tok--; tok >= token && *tok && ISSPACE(*tok); tok--) in gettoken()
/dragonfly/contrib/gcc-8.0/gcc/c-family/
H A Dc-indentation.c83 if (first_nws != NULL && !ISSPACE (ch)) in get_visual_column()
124 if (!ISSPACE (ch)) in get_first_nws_vis_column()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dgenoutput.c648 while (ISSPACE (*cp)) in process_template()
676 while (ISSPACE (*cp)) in process_template()
695 if (!ISSPACE (*ep)) in process_template()
775 if (ISSPACE (c) || strchr (indep_constraints, c)) in validate_insn_alternatives()
1073 if (! ISSPACE (ch)) in strip_whitespace()
H A Dgentarget-def.c74 while (ISSPACE (*p))
153 else if (*p != '(' && !ISSPACE (*p)) in def_target_insn()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgenoutput.c670 while (ISSPACE (*cp)) in process_template()
676 if (!ISSPACE (*ep)) in process_template()
729 if (ISSPACE (c) || strchr (indep_constraints, c)) in validate_insn_alternatives()
1095 if (! ISSPACE (ch)) in strip_whitespace()
H A Dgraphite-poly.c435 || ISSPACE (s[0])) in openscop_read_N_int()
445 while ((*str) && !ISSPACE (*str) && (*str != '#')) in openscop_read_N_int()
449 while ((*str) && ISSPACE (*str) && (*str != '#')) in openscop_read_N_int()
481 || ISSPACE (str[0])) in openscop_read_N_string()
490 for (; (*s) && (!ISSPACE (*s)) && (*s != '#'); ++count) in openscop_read_N_string()
497 while ((*s) && ISSPACE (*s) && (*s != '#')) in openscop_read_N_string()
H A Dgengtype-lex.l134 for (len = yyleng; ISSPACE (yytext[len-1]); len--)
/dragonfly/contrib/binutils-2.27/include/
H A Dsafe-ctype.h98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/dragonfly/contrib/gcc-4.7/include/
H A Dsafe-ctype.h98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/dragonfly/contrib/binutils-2.34/include/
H A Dsafe-ctype.h98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/dragonfly/contrib/gdb-7/include/
H A Dsafe-ctype.h98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/dragonfly/contrib/gcc-8.0/include/
H A Dsafe-ctype.h98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/dragonfly/contrib/binutils-2.34/opcodes/
H A Ddisassemble.c786 if (!ISSPACE (options[len - 1]) && options[len - 1] != ',') in remove_whitespace_and_extra_commas()
793 if (ISSPACE (options[i])) in remove_whitespace_and_extra_commas()

123