Lines Matching full:text
36 def check_line(self, lineno, text): argument
37 if self.START_DEFINE.search(text):
40 if self.END_DEFINE.search(text):
47 if not self.backslash and self.CONDITIONAL.search(text):
51 if self.ENDS_WITH_BACKSLASH.search(text):
56 if self.MAKEFILE_TARGET.search(text):
59 if text.strip() == "":
64 if self.define and self.COMMENT.search(text):
68 if not text.startswith("\t"):
71 text]
73 if text.startswith("\t"):
76 text]
97 def check_line(self, lineno, text): argument
98 if self.START_CONDITIONAL.search(text):
101 if self.END_CONDITIONAL.search(text):
105 m = self.VARIABLE.search(text)
116 text]
124 text]
129 if self.CONCATENATING.search(text):
132 text]
133 if self.USUALLY_OVERRIDDEN.search(text):
138 text]
145 def check_line(self, lineno, text): argument
150 if lineno == 1 and text.startswith("include "):
153 if text.rstrip() != "#" * 80:
156 text,
159 if text.rstrip() != "#":
162 text]
164 if text.rstrip() != "":
167 text]
181 def check_line(self, lineno, text): argument
182 if self.FIND_SOURCE.search(text):
190 text]
196 def check_line(self, lineno, text): argument
197 if self.TAB_OR_MULTIPLE_SPACES_BEFORE_BACKSLASH.match(text.rstrip()):
200 text]
209 def check_line(self, lineno, text): argument
213 if self.ENDS_WITH_BACKSLASH.search(text):
215 self.lastline = text
219 if last_line_ends_in_backslash and text.strip() == "":
260 def check_line(self, lineno, text): argument
261 m = self.VARIABLE.search(text)
268 v = self.FIND_VIRTUAL.search(text)
278 if self.REGEX.search(text) is None:
281 text]
299 def check_line(self, lineno, text): argument
300 if self.START_CONDITIONAL.search(text):
303 if self.END_CONDITIONAL.search(text):
311 if self.DEFAULT_GENERIC_FLAG.search(text):
315 text]
317 if self.DEFAULT_AUTOTOOLS_FLAG.search(text) and not text.lstrip().startswith("HOST_"):
321 text]
327 def check_line(self, lineno, text): argument
328 if self.VARIABLE_WITH_BRACES.match(text.rstrip()):
331 text]