Searched refs:path_file (Results 1 – 4 of 4) sorted by relevance
/third_party/grpc/tools/run_tests/sanity/ |
D | check_deprecated_grpc++.py | 132 path_file = os.path.join(root, filename) variable 133 path_files.append(path_file) 147 for path_file in expected_files: 148 relative_path_file = path_file.split('/', 2)[2] 161 path_file_expected = path_file + '.expected' 165 if 0 != os.system('diff %s %s' % (path_file_expected, path_file)): 166 print('Difference found in file:', path_file) 175 path_file = os.path.join(root, filename) variable 177 if path_file.endswith(ext): 179 with open(path_file, "r") as fi: [all …]
|
/third_party/glib/gio/kqueue/ |
D | gkqueuefilemonitor.c | 213 gchar *path_dir, *path_file, *file_basename; in g_kqueue_file_monitor_start() local 228 path_file = g_strdup (filename); in g_kqueue_file_monitor_start() 236 path_file = g_build_filename (dirname, basename, NULL); in g_kqueue_file_monitor_start() 241 path_file = NULL; in g_kqueue_file_monitor_start() 250 if (path_file != NULL) in g_kqueue_file_monitor_start() 251 file = g_file_new_for_path (path_file); in g_kqueue_file_monitor_start() 255 g_free (path_file); in g_kqueue_file_monitor_start() 282 if (path_file != NULL) in g_kqueue_file_monitor_start() 284 sub_file = _kqsub_new (g_steal_pointer (&path_file), in g_kqueue_file_monitor_start() 294 g_clear_pointer (&path_file, g_free); in g_kqueue_file_monitor_start()
|
/third_party/python/Lib/distutils/command/ |
D | install.py | 526 path_file = extra_dirs = self.extra_path[0] 528 path_file, extra_dirs = self.extra_path 538 path_file = None 543 self.path_file = path_file 582 if self.path_file: 601 not (self.path_file and self.install_path_file) and 611 self.path_file + ".pth") 633 if self.path_file and self.install_path_file: 635 self.path_file + ".pth"))
|
/third_party/python/Lib/distutils/tests/ |
D | test_install.py | 143 self.assertEqual(cmd.path_file, 'path') 150 self.assertEqual(cmd.path_file, 'path') 157 self.assertEqual(cmd.path_file, None)
|