Searched refs:in_comment (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/tzdata/ |
H A D | ziguard.awk | 93 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 …]
|
/freebsd/crypto/openssl/util/ |
H A D | check-format.pl | 137 my $in_comment; # number of lines so far within multi-line comment, 0 if no comment, < 0… 200 $in_comment = 0; 371 if ($in_comment != 0 && $in_comment != 1) { # in multi-line comment but not on its first line 373 if ($in_comment > 0) { # not at its end 377 my $tweak = $in_comment == -2 ? 1 : 0; 383 if ($in_comment < 0 && !$leading_comment) { 387 return if $in_comment > 0; # not on its last line 393 …if (($in_comment == 0 || $in_comment == 1) # no comment, intra-line comment, or begin of multi-lin… 400 …if (($in_comment == 0 || $in_comment < 0) # (no comment,) intra-line comment or end of multi-line … 412 report("intra-line comment indent = $count != $ref_indent") if $in_comment == 0; [all …]
|
/freebsd/sys/contrib/openzfs/scripts/ |
H A D | cstyle.pl | 211 my $in_comment = 0; 247 $_ = '"' . $_ if ($in_string && !$nocheck && !$in_comment); 258 if ($nocheck || $in_comment) { 448 $in_comment = 0; 456 $in_comment = 1; 463 if ($in_comment) { 478 if (/[^ ] / && !/".* .*"/ && !$in_comment) { 497 if ($in_comment) { # still in comment, don't do further checks
|
/freebsd/tools/build/ |
H A D | checkstyle9.pl | 467 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 …]
|
/freebsd/crypto/openssl/util/perl/OpenSSL/ |
H A D | ParseC.pm | 787 in_comment => "", # empty string when outside a comment, otherwise 1002 elsif ($state{in_comment}) { 1006 if ($state{in_comment} eq "//"); 1013 $state{in_comment} = ""; 1105 $state{in_comment} = $&;
|
/freebsd/usr.bin/indent/ |
H A D | indent.c | 1084 int in_comment = 0; in main() local 1094 while (*buf_ptr != '\n' || (in_comment && !had_eof)) { in main() 1101 if (!in_comment) { in main() 1108 if (*buf_ptr == '*' && !in_comment && !quote) { in main() 1109 in_comment = 1; in main() 1123 if (*buf_ptr == '/' && in_comment) { in main() 1124 in_comment = 0; in main()
|
/freebsd/sbin/ipf/libipf/ |
H A D | printnat.c | 345 np->in_tqehead[0], np->in_tqehead[1], np->in_comment); in printnat()
|
/freebsd/contrib/ncurses/progs/ |
H A D | tic.c | 1072 bool in_comment = FALSE; in main() local 1080 in_comment = TRUE; in main() 1082 in_comment = FALSE; in main() 1086 && (in_comment || (oldc == '\n' && c == '\n'))) in main()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_nat.h | 221 char *in_comment; member
|