Lines Matching full:line
64 # #line report the line number of the *next* line.
68 input = "#line " (FNR + 1) " \"" FILENAME "\"\n";
78 # No spurious end of line: use printf.
96 # We have to handle CONTENTS line per line, since anchors in AWK are
98 function normalize(contents, i, lines, n, line, res) {
104 line = lines[i];
106 # Whole line commands.
107 if (line ~ /^@(c |comment|dots|end (ignore|group)|ignore|group)/)
112 line = "";
114 gsub (/"@value\{VERSION\}"/, "\"" VERSION "\"", line)
115 gsub (/^@result\{\}/, "", line);
116 gsub (/^@error\{\}/, "", line);
117 gsub ("@[{]", "{", line);
118 gsub ("@}", "}", line);
119 gsub ("@@", "@", line);
120 gsub ("@comment.*", "", line);
122 res = res line "\n";