Home
last modified time | relevance | path

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

/dragonfly/contrib/bmake/
H A Dstr.c124 char inquote; in Substring_Words() local
144 inquote = '\0'; in Substring_Words()
152 if (inquote != '\0') { in Substring_Words()
153 if (inquote == ch) in Substring_Words()
154 inquote = '\0'; in Substring_Words()
158 inquote = ch; in Substring_Words()
160 if (word_start == NULL && str_p[1] == inquote) { in Substring_Words()
167 inquote = '\0'; in Substring_Words()
180 if (inquote != '\0') in Substring_Words()
203 if (expand && inquote != '\0') { in Substring_Words()
/dragonfly/contrib/binutils-2.34/gas/
H A Dmacro.c797 int inquote = 0, macro_line = 0; in macro_expand_body() local
889 && (! inquote in macro_expand_body()
898 || inquote) in macro_expand_body()
902 (macro_strip_at && inquote) ? '@' : '\'', in macro_expand_body()
947 inquote = !inquote; in macro_expand_body()
H A Dread.c1430 int inquote = 0; in mri_comment_field() local
1436 || inquote); in mri_comment_field()
1440 inquote = !inquote; in mri_comment_field()
6162 char inquote = '\0'; in _find_end_of_line() local
6166 || (inquote && !ISCNTRL (*s)) in _find_end_of_line()
6167 || (inquote == '\'' && flag_mri) in _find_end_of_line()
6181 inquote ^= *s; in _find_end_of_line()
6186 else if (!inquote in _find_end_of_line()
6191 : *s == inquote) in _find_end_of_line()
6192 inquote ^= *s; in _find_end_of_line()
[all …]
/dragonfly/contrib/binutils-2.27/gas/
H A Dmacro.c798 int inquote = 0, macro_line = 0; in macro_expand_body() local
890 && (! inquote in macro_expand_body()
899 || inquote) in macro_expand_body()
903 (macro_strip_at && inquote) ? '@' : '\'', in macro_expand_body()
948 inquote = !inquote; in macro_expand_body()
H A Dread.c1428 int inquote = 0; in mri_comment_field() local
1434 || inquote); in mri_comment_field()
1438 inquote = !inquote; in mri_comment_field()
6262 char inquote = '\0'; in _find_end_of_line() local
6266 || (inquote && !ISCNTRL (*s)) in _find_end_of_line()
6267 || (inquote == '\'' && flag_mri) in _find_end_of_line()
6281 inquote ^= *s; in _find_end_of_line()
6286 else if (!inquote in _find_end_of_line()
6291 : *s == inquote) in _find_end_of_line()
6292 inquote ^= *s; in _find_end_of_line()
[all …]
/dragonfly/lib/libc/resolv/
H A Dres_mkupdate.c766 int inquote = 0; in getstr_str() local
792 inquote = !inquote; in getstr_str()
823 } else if (!inquote && isspace(c)) in getstr_str()
/dragonfly/usr.bin/telnet/
H A Dcommands.c137 int inquote = 0; in makeargv() local
145 if (inquote) { in makeargv()
146 if (c == inquote) { in makeargv()
147 inquote = 0; in makeargv()
155 inquote = '"'; in makeargv()
158 inquote = '\''; in makeargv()
/dragonfly/contrib/tcsh-6/
H A Ded.chared.c793 Char inquote = 0; in c_endword() local
805 if (inquote || (p > low && p[-1] != (Char)'\\')) { in c_endword()
806 if (inquote == 0) inquote = *p; in c_endword()
807 else if (inquote == *p) inquote = 0; in c_endword()
811 if (!inquote && Strchr(delim, *p) && p > low && p[-1] != (Char)'\\') in c_endword()