Lines Matching refs:line
250 for line in f:
251 line = line.strip()
252 if not line or line.startswith('#'): continue
253 sites.append({'url': line, 'timeout': args.timeout})
395 for line in f:
396 line = line.strip()
398 if not line: continue
399 if line.startswith("Runtime Function"): continue
400 if line.startswith("===="): continue
401 if line.startswith("----"): continue
402 if line.startswith("URL:"): continue
403 if line.startswith("STATS:"): continue
404 # We have a regular line.
405 fields = line.split()
412 # We calculate the sum, if it's not the "total" line.
450 # Sorting order is in the commend-line arguments.
632 # Main program, parse command line and execute.