Searched refs:extra_path (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/distutils/command/ |
D | install.py | 205 self.extra_path = None 514 if self.extra_path is None: 515 self.extra_path = self.distribution.extra_path 517 if self.extra_path is not None: 522 if isinstance(self.extra_path, str): 523 self.extra_path = self.extra_path.split(',') 525 if len(self.extra_path) == 1: 526 path_file = extra_dirs = self.extra_path[0] 527 elif len(self.extra_path) == 2: 528 path_file, extra_dirs = self.extra_path
|
/third_party/python/Lib/distutils/tests/ |
D | test_install.py | 141 self.assertEqual(cmd.extra_path, ['path', 'dirs']) 146 cmd.extra_path = ['path'] 148 self.assertEqual(cmd.extra_path, ['path']) 153 dist.extra_path = cmd.extra_path = None 155 self.assertEqual(cmd.extra_path, None) 160 cmd.extra_path = 'path,dirs,again'
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/ |
D | test_gyp.py | 81 extra_path = [os.path.abspath(p) for p in args.path] 82 extra_path = os.pathsep.join(extra_path) 83 os.environ["PATH"] = extra_path + os.pathsep + os.environ["PATH"]
|
/third_party/node/tools/gyp/ |
D | test_gyp.py | 81 extra_path = [os.path.abspath(p) for p in args.path] 82 extra_path = os.pathsep.join(extra_path) 83 os.environ["PATH"] = extra_path + os.pathsep + os.environ["PATH"]
|
/third_party/skia/infra/bots/recipe_modules/flavor/resources/ |
D | symbolize_stack_trace.py | 60 extra_path = r'/.*\.\./' 89 sym = re.sub(extra_path, '', sym)
|
/third_party/ltp/pan/cgi/ |
D | browse.cgi | 104 @extra_path = split(/\//, $ENV{PATH_INFO}); 129 if ($#extra_path > 0) {
|
/third_party/libinput/tools/ |
D | shared.c | 554 const char *extra_path = LIBINPUT_TOOL_PATH; in setup_path() local 560 builddir ? builddir : extra_path, in setup_path()
|
/third_party/python/Lib/distutils/ |
D | dist.py | 214 self.extra_path = None
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 1027 Deprecated ``extra_path`` distribution option in distutils packaging.
|
/third_party/python/Doc/whatsnew/ |
D | 3.6.rst | 1988 The undocumented ``extra_path`` argument to the
|