Lines Matching full:start
277 """Find the start and end positions of the first outer paired delimeters
289 …le[int]: If matching delimeters are found, return indices in `list`. Otherwise, return end < start.
295 start: int = line.find(open)
296 if start < 0:
299 for i in range(start + 1, len(line)):
305 return start, i
306 return start, -1
324 start, end = find_matching(line)
325 if end < start:
328 keyvalues_str = line[start:end + 1]
330 (?:\(\s*|\s*,\s*) # start with open parentheses or comma, no capture
626 start: float = time.time()
635 elapsed_sec=time.time() - start,
636 timestamp=time.strftime('%Y-%m-%d %H:%M:%S %Z', time.localtime(start)),
796 for (i, backend) in enumerate(ceed_backends, start=1)]
801 for (i, subtest) in enumerate(async_outputs, start=1):