Lines Matching refs:match
208 def _lookup_variable(match): argument
209 key = match.group(1)
214 return match.group(0)
235 match = self._INCLUDE.match(line)
236 if match:
237 command = match.group(1)
246 match = self._VAR.match(line)
247 if match:
251 key = match.group(1).strip()
252 assign_op = match.group(2).strip()
253 value = match.group(3).strip()