Lines Matching full:path
17 # x_path - "path/to/a/b/c/x.ext"
18 # c_dir - "path/to/a/b/c"
22 input_root, _ = os.path.splitext(input_filename)
23 input_path = os.path.join(source_dir, input_root + '.in')
24 pdf_path = os.path.join(working_dir, input_root + '.pdf')
25 txt_path = os.path.join(working_dir, input_root + '.txt')
26 expected_path = os.path.join(source_dir, input_root + '_expected.txt')
42 parser.add_option('--build-dir', default=os.path.join('out', 'Debug'),
43 help='relative path from the base source directory')
48 source_dir = finder.TestingDir(os.path.join('resources', 'javascript'))
50 if not os.path.exists(pdfium_test_path):
54 working_dir = finder.WorkingDir(os.path.join('testing', 'javascript'))
55 if not os.path.exists(working_dir):
62 input_path = os.path.join(source_dir, input_filename)
63 if os.path.isfile(input_path):