Searched refs:in_comment (Results 1 - 8 of 8) sorted by relevance
/third_party/tzdata/ |
H A D | ziguard.awk | 97 in_comment = $0 ~ /^#/ 104 if (($(in_comment + 2) != "-") == (DATAFORM != "rearguard")) { 105 uncomment = in_comment 107 comment_out = !in_comment 116 && (!$(in_comment + 4) || 1968 < $(in_comment + 4))) 119 || (Zone_Dublin_post_1968 && $(in_comment + 3) == "IST/GMT")) \ 121 uncomment = in_comment 123 comment_out = !in_comment 132 && ($(in_comment [all...] |
/third_party/node/deps/openssl/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 when end is on current line 138 my $leading_comment; # multi-line comment has no code before its beginning delimiter, if $in_comment != 0 139 my $formatted_comment; # multi-line comment beginning with "/*-", which indicates/allows special formatting, if $in_comment != 0 140 my $comment_indent; # comment indent, if $in_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 < [all...] |
/third_party/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 when end is on current line 138 my $leading_comment; # multi-line comment has no code before its beginning delimiter, if $in_comment != 0 139 my $formatted_comment; # multi-line comment beginning with "/*-", which indicates/allows special formatting, if $in_comment != 0 140 my $comment_indent; # comment indent, if $in_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 < [all...] |
/third_party/python/Tools/clinic/ |
H A D | cpp.py | 29 self.in_comment = False 101 if self.in_comment: 110 self.in_comment = False 114 if self.in_comment: 124 self.in_comment = True
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | ParseC.pm | 787 in_comment => "", # empty string when outside a comment, otherwise 790 # NOTE: in_string and in_comment will never be 858 unless ($state{in_comment}) { 1002 elsif ($state{in_comment}) { 1006 if ($state{in_comment} eq "//"); 1013 $state{in_comment} = ""; 1105 $state{in_comment} = $&;
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | ParseC.pm | 787 in_comment => "", # empty string when outside a comment, otherwise 790 # NOTE: in_string and in_comment will never be 858 unless ($state{in_comment}) { 1002 elsif ($state{in_comment}) { 1006 if ($state{in_comment} eq "//"); 1013 $state{in_comment} = ""; 1105 $state{in_comment} = $&;
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 1498 my ($in_comment) = @_; 1500 if ($in_comment) { 1909 my $in_comment = 0; 1915 $in_comment = 1; 1918 $in_comment = 1; 1920 if (!$in_comment && $current_comment ne '') { 1923 $current_comment .= $line . "\n" if ($in_comment); 1925 $in_comment = 0; 2609 my $in_comment = 0; 2656 $in_comment [all...] |
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
H A D | parse.rs | 583 let mut in_comment = false; in peek_space() variables 587 } else if !in_comment && c == '#' { in peek_space() 588 in_comment = true; in peek_space() 589 } else if in_comment && c == '\n' { in peek_space() 590 in_comment = false; in peek_space()
|
Completed in 13 milliseconds