Lines Matching refs:line
340 for line in ninja_deps:
341 line = line.rstrip()
343 if not line:
346 if line[0] == ' ':
348 if len(line) < 5 or line[0:4] != ' ' or line[5] == ' ':
351 dep = line[4:]
357 colon_pos = line.find(':')
359 sys.exit('Unindented line must have a colon')
361 sys.exit('Missing empty line before new target')
362 current_target = line[0:colon_pos]
363 match = re.search(r"#deps (\d+)", line)