Home | History | Annotate | Download | only in tools

Lines Matching refs: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)
239 line = re.sub("|".join([double_quoted_string,
244 line)
247 line = re.sub("|".join([double_quoted_string,
252 line)
255 re.sub(r"([a-zA-Z0-9_$%]+)", self.LookAtIdentifier, line)
264 if re.search(r"\?", line):
270 line = re.sub("|".join([double_quoted_string,
279 line)
280 new_lines.append(line)