/third_party/python/Lib/test/ |
D | test_posixpath.py | 247 self.assertEqual(posixpath.expanduser("foo"), "foo") 248 self.assertEqual(posixpath.expanduser(b"foo"), b"foo") 253 self.assertEqual(posixpath.expanduser("~"), "/home/victor") 257 self.assertEqual(posixpath.expanduser("~"), "/home/victor") 262 self.assertEqual(posixpath.expanduser("~"), "/") 263 self.assertEqual(posixpath.expanduser("~/"), "/") 264 self.assertEqual(posixpath.expanduser("~/foo"), "/foo") 271 self.assertIsInstance(posixpath.expanduser("~/"), str) 272 self.assertIsInstance(posixpath.expanduser(b"~/"), bytes) 275 if posixpath.expanduser("~") != '/': [all …]
|
D | test_pathlib.py | 1460 q = self.cls(os.path.expanduser('~')) 1506 self.assertEqual(p.expanduser(), P(os.path.expanduser('~'))) 1508 self.assertEqual(p.expanduser(), p) 1510 self.assertEqual(p.expanduser(), p) 1512 self.assertEqual(p.expanduser(), p) 1514 self.assertEqual(p.expanduser(), p) 2580 self.assertEqual(p1.expanduser(), P(userhome) / 'Documents') 2581 self.assertEqual(p2.expanduser(), P(userhome) / 'Documents') 2582 self.assertEqual(p3.expanduser(), P(otherhome) / 'Documents') 2583 self.assertEqual(p4.expanduser(), p4) [all …]
|
D | test_netrc.py | 145 orig_expanduser = os.path.expanduser
|
/third_party/skia/tools/rebaseline/ |
D | toggle_legacy_flag.py | 102 G3_SCRIPT_DIR = os.path.expanduser("~/skia-g3/scripts") 145 args.chromium_dir = os.path.expanduser(args.chromium_dir) 152 args.android_dir = os.path.expanduser(args.android_dir)
|
/third_party/flutter/skia/tools/rebaseline/ |
D | toggle_legacy_flag.py | 101 G3_SCRIPT_DIR = os.path.expanduser("~/skia-g3/scripts") 144 args.chromium_dir = os.path.expanduser(args.chromium_dir) 151 args.android_dir = os.path.expanduser(args.android_dir)
|
/third_party/python/Lib/idlelib/ |
D | macosx.py | 4 from os.path import expanduser 99 plist_path = expanduser('~/Library/Preferences/.GlobalPreferences.plist')
|
/third_party/python/Lib/ctypes/macholib/ |
D | dyld.py | 23 os.path.expanduser("~/Library/Frameworks"), 30 os.path.expanduser("~/lib"),
|
/third_party/python/Lib/distutils/tests/ |
D | test_install.py | 94 self.old_expand = os.path.expanduser 95 os.path.expanduser = _expanduser 102 os.path.expanduser = self.old_expand
|
D | test_dist.py | 242 old_expander = os.path.expanduser 243 os.path.expanduser = _expander 251 os.path.expanduser = old_expander
|
/third_party/node/tools/inspector_protocol/ |
D | roll.py | 107 upstream = os.path.normpath(os.path.expanduser(args.ip_src_upstream)) 108 downstream = os.path.normpath(os.path.expanduser(
|
/third_party/python/Mac/IDLE/IDLE.app/Contents/Resources/ |
D | idlemain.py | 8 os.chdir(os.path.expanduser('~/Documents'))
|
/third_party/mindspore/mindspore/lite/tools/dataset/cropper/ |
D | parser.py | 32 with open(os.path.expanduser(ASSOCIATION_FILENAME), 'r') as f:
|
/third_party/python/Doc/library/ |
D | netrc.rst | 24 as determined by :func:`os.path.expanduser` -- will be read. Otherwise, 38 :func:`os.path.expanduser` is used to find the location of the
|
/third_party/python/Lib/tkinter/ |
D | filedialog.py | 126 dir_or_file = os.path.expanduser(dir_or_file) 203 filter = os.path.expanduser(filter) 210 file = os.path.expanduser(file)
|
/third_party/flutter/skia/infra/bots/recipe_modules/flavor/ |
D | ssh.py | 27 path = self.m.path.expanduser('~/ssh_machine.json')
|
/third_party/python/Lib/distutils/ |
D | config.py | 40 return os.path.join(os.path.expanduser('~'), '.pypirc')
|
/third_party/selinux/libselinux/src/ |
D | selinuxswig_python.i | 44 selinux_restorecon(os.path.expanduser(path), restorecon_flags)
|
/third_party/python/Lib/ |
D | pathlib.py | 356 expanduser = staticmethod(os.path.expanduser) variable in _NormalAccessor 998 return cls("~").expanduser() 1430 def expanduser(self): member in Path 1436 homedir = self._accessor.expanduser(self._parts[0])
|
D | site.py | 274 return os.path.expanduser(os.path.join(*args)) 474 history = os.path.join(os.path.expanduser('~'),
|
D | netrc.py | 26 file = os.path.join(os.path.expanduser("~"), ".netrc")
|
/third_party/python/Tools/pynche/ |
D | pyColorChooser.py | 20 self.__initfile = initfile or os.path.expanduser('~/.pynche')
|
D | Main.py | 201 initfile = os.path.expanduser('~/.pynche')
|
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | file_resources.py | 67 global_file = os.path.expanduser(style.GLOBAL_STYLE)
|
/third_party/python/Lib/distutils/command/ |
D | install.py | 491 val = os.path.expanduser(val) 556 home = convert_path(os.path.expanduser("~"))
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | __init__.py | 473 home_dot_gyp = os.path.expanduser(home_dot_gyp) 488 home_dot_gyp = os.path.expanduser(options.config_dir)
|