Home
last modified time | relevance | path

Searched refs:path_file (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc/tools/run_tests/sanity/
Dcheck_deprecated_grpc++.py134 path_file = os.path.join(root, filename) variable
135 path_files.append(path_file)
149 for path_file in expected_files:
150 relative_path_file = path_file.split('/', 2)[2]
163 path_file_expected = path_file + '.expected'
167 if 0 != os.system('diff %s %s' % (path_file_expected, path_file)):
168 print('Difference found in file:', path_file)
177 path_file = os.path.join(root, filename) variable
179 if path_file.endswith(ext):
181 with open(path_file, "r") as fi:
[all …]
/external/autotest/client/site_tests/platform_PrinterPpds/
Darchiver.py136 def copy_file(self, prefix, name, path_file, apply_gzip=False): argument
148 with open(path_file, 'rb') as file_source:
153 def move_file(self, prefix, name, path_file, apply_gzip=False): argument
167 self.copy_file(prefix, name, path_file, apply_gzip)
168 os.remove(path_file)
176 shutil.move(path_file, path_target)
/external/python/cpython3/Lib/distutils/command/
Dinstall.py503 path_file = extra_dirs = self.extra_path[0]
505 path_file, extra_dirs = self.extra_path
515 path_file = None
520 self.path_file = path_file
559 if self.path_file:
578 not (self.path_file and self.install_path_file) and
588 self.path_file + ".pth")
610 if self.path_file and self.install_path_file:
612 self.path_file + ".pth"))
/external/python/cpython2/Lib/distutils/command/
Dinstall.py517 path_file = extra_dirs = self.extra_path[0]
519 (path_file, extra_dirs) = self.extra_path
530 path_file = None
535 self.path_file = path_file
577 if self.path_file:
596 not (self.path_file and self.install_path_file) and
607 self.path_file + ".pth")
629 if self.path_file and self.install_path_file:
631 self.path_file + ".pth"))
/external/python/cpython3/Lib/distutils/tests/
Dtest_install.py131 self.assertEqual(cmd.path_file, 'path')
138 self.assertEqual(cmd.path_file, 'path')
145 self.assertEqual(cmd.path_file, None)
/external/python/cpython2/Lib/distutils/tests/
Dtest_install.py133 self.assertEqual(cmd.path_file, 'path')
140 self.assertEqual(cmd.path_file, 'path')
147 self.assertEqual(cmd.path_file, None)
/external/python/setuptools/setuptools/command/
Dinstall.py55 self.path_file = None