Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/bmake/
Dstr.c144 char inquote, *start, *t; in brk_string() local
163 inquote = '\0'; in brk_string()
168 if (inquote) { in brk_string()
169 if (inquote == ch) in brk_string()
170 inquote = '\0'; in brk_string()
175 inquote = (char) ch; in brk_string()
177 if (start == NULL && p[1] == inquote) { in brk_string()
184 inquote = '\0'; in brk_string()
197 if (inquote) in brk_string()
219 if (expand && inquote) { in brk_string()
/freebsd-9-stable/crypto/openssl/util/
Dsu-filter.pl68 my $inquote = 0;
87 if($inquote) {
90 $inquote--;
116 $inquote++;
145 $inquote++;
/freebsd-9-stable/usr.bin/make/
Dstr.c143 char inquote; in brk_string() local
157 inquote = '\0'; in brk_string()
167 if (inquote == '\0') { in brk_string()
168 inquote = str[0]; in brk_string()
173 } else if (inquote == str[0]) { in brk_string()
174 inquote = '\0'; in brk_string()
190 if (inquote) { in brk_string()
/freebsd-9-stable/contrib/binutils/gas/
Dread.c1176 int inquote = 0; in mri_comment_field() local
1182 || inquote); in mri_comment_field()
1186 inquote = !inquote; in mri_comment_field()
5731 char inquote = '\0'; in _find_end_of_line() local
5735 || (inquote && !ISCNTRL (*s)) in _find_end_of_line()
5736 || (inquote == '\'' && flag_mri) in _find_end_of_line()
5743 inquote ^= *s; in _find_end_of_line()
5748 else if (!inquote in _find_end_of_line()
5753 : *s == inquote) in _find_end_of_line()
5754 inquote ^= *s; in _find_end_of_line()
[all …]
Dmacro.c760 int src = 0, inquote = 0, macro_line = 0; in macro_expand_body() local
853 && (! inquote in macro_expand_body()
864 (macro_strip_at && inquote) ? '@' : '\'', in macro_expand_body()
909 inquote = !inquote; in macro_expand_body()
/freebsd-9-stable/crypto/heimdal/appl/telnet/telnet/
Dcommands.c76 int inquote = 0; in makeargv() local
84 if (inquote) { in makeargv()
85 if (c == inquote) { in makeargv()
86 inquote = 0; in makeargv()
94 inquote = '"'; in makeargv()
97 inquote = '\''; in makeargv()
/freebsd-9-stable/lib/libc/resolv/
Dres_mkupdate.c775 int inquote = 0; in getstr_str() local
801 inquote = !inquote; in getstr_str()
832 } else if (!inquote && isspace(c)) in getstr_str()
/freebsd-9-stable/contrib/telnet/telnet/
Dcommands.c173 int inquote = 0; in makeargv() local
181 if (inquote) { in makeargv()
182 if (c == inquote) { in makeargv()
183 inquote = 0; in makeargv()
191 inquote = '"'; in makeargv()
194 inquote = '\''; in makeargv()
/freebsd-9-stable/contrib/tcsh/
Ded.chared.c797 Char inquote = 0; in c_endword() local
808 if (inquote || *(p-1) != (Char)'\\') { /* Should it be honored? */ in c_endword()
809 if (inquote == 0) inquote = *p; in c_endword()
810 else if (inquote == *p) inquote = 0; in c_endword()
814 if (!inquote && Strchr(delim, *p) && *(p-1) != (Char)'\\') in c_endword()