Lines Matching full:foo*
73 # - assume textLine+ to be a footer until proven otherwise
74 # - exception: the first block is not footer (as it is the title)
78 # aren't footer
79 # - in END, the last textLine+ block is available for footer parsing
83 # is a footer, the first block is not.
85 footerComment = 0
101 # Count blank lines outside footer comments
102 /^$/ && (footerComment == 0) {
107 # Catch footer comment
109 footerComment = 1
112 /]$/ && (footerComment == 1) {
113 footerComment = 2
126 footerComment = 0
129 # Detect that the current block is not the footer
130 (footerComment == 0) && (!/^\[?[a-zA-Z0-9-]+:/ || /^[a-zA-Z0-9-]+:\/\//) {
136 if (footerComment == 2) {
137 footerComment = 0
145 # Footer handling:
146 # If the last block is considered a footer, splice in the Change-Id at the
161 numlines = split(lines, footer, "\n")
163 if (unprinted && match(tolower(footer[line]), changeIdAfter) != 1) {
167 print footer[line]