Lines Matching full:line
93 declarations. (These last two must be on one line including the opening
194 The compressed version hopefully does the same thing. Line breaks are
204 for line in re.split(r"\n", text):
205 line = line.replace("\t", " ")
207 m = re.search(r"\*/", line)
209 line = line[m.end():]
216 line = re.sub(r"/\*.*?\*/", " ", line)
217 line = re.sub(r"//.*", "", line)
218 m = re.search(r"/\*", line)
220 line = line[:m.start()]
224 line = re.sub(r"^ +", "", line)
225 line = re.sub(r" +$", "", line)
237 line = re.sub("|".join([double_quoted_string,
242 line)
245 line = re.sub("|".join([double_quoted_string,
250 line)
253 re.sub(r"([a-zA-Z0-9_$%]+)", self.LookAtIdentifier, line)
262 if re.search(r"\?", line):
268 line = re.sub("|".join([double_quoted_string,
277 line)
278 new_lines.append(line)