Lines Matching refs:path
92 for path in headers:
93 assert os.path.exists(path)
94 pool.apply_async(compile_header, args=(path, ), callback=print_and_exit_if)
104 skia_dir = os.path.join(os.path.dirname(__file__), os.pardir)
106 paths = [os.path.relpath(os.path.abspath(arg), skia_dir) for arg in argv[1:]]
110 paths = [path for path in subprocess.check_output(['git', 'ls-files']).splitlines()
111 if path.endswith('.h') and not ignore.match(path)]