Home
last modified time | relevance | path

Searched refs:expanduser (Results 1 – 25 of 69) sorted by relevance

123

/third_party/python/Lib/test/
Dtest_posixpath.py247 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 …]
Dtest_pathlib.py1460 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 …]
Dtest_netrc.py145 orig_expanduser = os.path.expanduser
/third_party/skia/tools/rebaseline/
Dtoggle_legacy_flag.py102 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/
Dtoggle_legacy_flag.py101 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/
Dmacosx.py4 from os.path import expanduser
99 plist_path = expanduser('~/Library/Preferences/.GlobalPreferences.plist')
/third_party/python/Lib/ctypes/macholib/
Ddyld.py23 os.path.expanduser("~/Library/Frameworks"),
30 os.path.expanduser("~/lib"),
/third_party/python/Lib/distutils/tests/
Dtest_install.py94 self.old_expand = os.path.expanduser
95 os.path.expanduser = _expanduser
102 os.path.expanduser = self.old_expand
Dtest_dist.py242 old_expander = os.path.expanduser
243 os.path.expanduser = _expander
251 os.path.expanduser = old_expander
/third_party/node/tools/inspector_protocol/
Droll.py107 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/
Didlemain.py8 os.chdir(os.path.expanduser('~/Documents'))
/third_party/mindspore/mindspore/lite/tools/dataset/cropper/
Dparser.py32 with open(os.path.expanduser(ASSOCIATION_FILENAME), 'r') as f:
/third_party/python/Doc/library/
Dnetrc.rst24 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/
Dfiledialog.py126 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/
Dssh.py27 path = self.m.path.expanduser('~/ssh_machine.json')
/third_party/python/Lib/distutils/
Dconfig.py40 return os.path.join(os.path.expanduser('~'), '.pypirc')
/third_party/selinux/libselinux/src/
Dselinuxswig_python.i44 selinux_restorecon(os.path.expanduser(path), restorecon_flags)
/third_party/python/Lib/
Dpathlib.py356 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])
Dsite.py274 return os.path.expanduser(os.path.join(*args))
474 history = os.path.join(os.path.expanduser('~'),
Dnetrc.py26 file = os.path.join(os.path.expanduser("~"), ".netrc")
/third_party/python/Tools/pynche/
DpyColorChooser.py20 self.__initfile = initfile or os.path.expanduser('~/.pynche')
DMain.py201 initfile = os.path.expanduser('~/.pynche')
/third_party/cef/tools/yapf/yapf/yapflib/
Dfile_resources.py67 global_file = os.path.expanduser(style.GLOBAL_STYLE)
/third_party/python/Lib/distutils/command/
Dinstall.py491 val = os.path.expanduser(val)
556 home = convert_path(os.path.expanduser("~"))
/third_party/node/tools/gyp/pylib/gyp/
D__init__.py473 home_dot_gyp = os.path.expanduser(home_dot_gyp)
488 home_dot_gyp = os.path.expanduser(options.config_dir)

123