Home
last modified time | relevance | path

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

/src/contrib/tzdata/
H A Dziguard.awk93 in_comment = $0 ~ /^#/
100 if (($(in_comment + 2) != "-") == (DATAFORM != "rearguard")) {
101 uncomment = in_comment
103 comment_out = !in_comment
112 && (!$(in_comment + 4) || 1968 < $(in_comment + 4)))
115 || (Zone_Dublin_post_1968 && $(in_comment + 3) == "IST/GMT")) \
117 uncomment = in_comment
119 comment_out = !in_comment
128 && ($(in_comment + 2) == "Namibia" \
129 || ($(in_comment + 2) == "-" && $(in_comment + 3) == "CAT" \
[all …]
/src/crypto/krb5/src/util/
H A Dkrb5-check-copyright.py71 in_comment = False
76 if not in_comment:
80 if not in_comment and '/*' in line:
84 in_comment = True
85 elif in_comment and '*/' not in line:
87 elif in_comment:
93 in_comment = False
/src/sys/contrib/openzfs/scripts/
H A Dcstyle.pl212 my $in_comment = 0;
248 $_ = '"' . $_ if ($in_string && !$nocheck && !$in_comment);
259 if ($nocheck || $in_comment) {
449 $in_comment = 0;
457 $in_comment = 1;
464 if ($in_comment) {
479 if (/[^ ] / && !/".* .*"/ && !$in_comment) {
498 if ($in_comment) { # still in comment, don't do further checks
/src/tools/build/
H A Dcheckstyle9.pl467 my ($in_comment) = @_;
469 if ($in_comment) {
846 my $in_comment = 0;
852 $in_comment = 1;
855 $in_comment = 1;
857 if (!$in_comment && $current_comment ne '') {
860 $current_comment .= $line . "\n" if ($in_comment);
862 $in_comment = 0;
1269 my $in_comment = 0;
1299 $in_comment = 0;
[all …]
/src/crypto/openssl/util/perl/OpenSSL/
H A DParseC.pm793 in_comment => "", # empty string when outside a comment, otherwise
1008 elsif ($state{in_comment}) {
1012 if ($state{in_comment} eq "//");
1019 $state{in_comment} = "";
1111 $state{in_comment} = $&;
/src/usr.bin/indent/
H A Dindent.c1083 int in_comment = 0; in main() local
1093 while (*buf_ptr != '\n' || (in_comment && !had_eof)) { in main()
1100 if (!in_comment) { in main()
1107 if (*buf_ptr == '*' && !in_comment && !quote) { in main()
1108 in_comment = 1; in main()
1122 if (*buf_ptr == '/' && in_comment) { in main()
1123 in_comment = 0; in main()
/src/sbin/ipf/libipf/
H A Dprintnat.c345 np->in_tqehead[0], np->in_tqehead[1], np->in_comment); in printnat()
/src/contrib/ncurses/progs/
H A Dtic.c1074 bool in_comment = FALSE; in main() local
1082 in_comment = TRUE; in main()
1084 in_comment = FALSE; in main()
1088 && (in_comment || (oldc == '\n' && c == '\n'))) in main()
/src/sys/netpfil/ipfilter/netinet/
H A Dip_nat.h221 char *in_comment; member