/third_party/python/Lib/test/ |
H A D | test_posixpath.py | 248 self.assertEqual(posixpath.expanduser("foo"), "foo") 249 self.assertEqual(posixpath.expanduser(b"foo"), b"foo") 254 self.assertEqual(posixpath.expanduser("~"), "/home/victor") 256 # expanduser() strips trailing slash 258 self.assertEqual(posixpath.expanduser("~"), "/home/victor") 263 self.assertEqual(posixpath.expanduser("~"), "/") 264 self.assertEqual(posixpath.expanduser("~/"), "/") 265 self.assertEqual(posixpath.expanduser("~/foo"), "/foo") 272 self.assertIsInstance(posixpath.expanduser("~/"), str) 273 self.assertIsInstance(posixpath.expanduser( [all...] |
H A D | test_pathlib.py | 1492 q = self.cls(os.path.expanduser('~')) 1542 self.assertEqual(p.expanduser(), P(os.path.expanduser('~'))) 1544 self.assertEqual(p.expanduser(), p) 1546 self.assertEqual(p.expanduser(), p) 1548 self.assertEqual(p.expanduser(), p) 1550 self.assertEqual(p.expanduser(), p) 2676 self.assertEqual(p1.expanduser(), P(userhome) / 'Documents') 2677 self.assertEqual(p2.expanduser(), P(userhome) / 'Documents') 2678 self.assertEqual(p3.expanduser(), [all...] |
/third_party/skia/tools/rebaseline/ |
H A 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/lame/test/ |
H A D | lametest.py | 123 options_file = os.path.normpath(os.path.expanduser(args[0])) 124 input_file = os.path.normpath(os.path.expanduser(args[1])) 125 lame1 = os.path.normpath(os.path.expanduser(args[2])) 127 lame2 = os.path.normpath(os.path.expanduser(args[3]))
|
/third_party/python/Lib/ctypes/macholib/ |
H A D | dyld.py | 23 os.path.expanduser("~/Library/Frameworks"), 30 os.path.expanduser("~/lib"),
|
/third_party/python/Lib/idlelib/ |
H A D | macosx.py | 4 from os.path import expanduser namespace 92 plist_path = expanduser('~/Library/Preferences/.GlobalPreferences.plist')
|
H A D | autocomplete.py | 208 expandedpath = os.path.expanduser(what)
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_install.py | 94 self.old_expand = os.path.expanduser 95 os.path.expanduser = _expanduser 102 os.path.expanduser = self.old_expand
|
H A D | test_dist.py | 242 old_expander = os.path.expanduser 243 os.path.expanduser = _expander 251 os.path.expanduser = old_expander
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | roll.py | 139 upstream = os.path.normpath(os.path.expanduser(args.ip_src_upstream)) 140 downstream = os.path.normpath(os.path.expanduser(
|
/third_party/node/tools/inspector_protocol/ |
H A 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/ |
H A D | idlemain.py | 8 os.chdir(os.path.expanduser('~/Documents'))
|
/third_party/python/Lib/tkinter/ |
H A 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/notofonts/scripts/ |
H A D | versionator.py | 26 ANDROID_PATH = Path("~/Downloads/android_fonts-master/api_level/").expanduser()
|
/third_party/python/Lib/distutils/ |
H A D | config.py | 41 return os.path.join(os.path.expanduser('~'), '.pypirc')
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | __init__.py | 477 home_dot_gyp = os.path.expanduser(home_dot_gyp) 492 home_dot_gyp = os.path.expanduser(options.config_dir)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | __init__.py | 491 home_dot_gyp = os.path.expanduser(home_dot_gyp) 506 home_dot_gyp = os.path.expanduser(options.config_dir)
|
/third_party/python/Lib/ |
H A D | sysconfig.py | 119 return os.path.expanduser(os.path.join(*args)) 274 value = os.path.expanduser(value)
|
H A D | site.py | 274 return os.path.expanduser(os.path.join(*args)) 473 history = os.path.join(os.path.expanduser('~'),
|
H A D | netrc.py | 70 file = os.path.join(os.path.expanduser("~"), ".netrc")
|
H A D | pathlib.py | 912 returned by os.path.expanduser('~')). 914 return cls("~").expanduser() 1377 def expanduser(self): member in Path 1379 (as returned by os.path.expanduser) 1383 homedir = os.path.expanduser(self._parts[0])
|
/third_party/python/Lib/distutils/command/ |
H A D | install.py | 491 val = os.path.expanduser(val) 496 """Calls `os.path.expanduser` on install_base, install_platbase and 501 """Calls `os.path.expanduser` on install dirs.""" 556 home = convert_path(os.path.expanduser("~"))
|
/third_party/mesa3d/.gitlab-ci/bin/ |
H A D | ci_run_n_monitor.py | 266 open(os.path.expanduser("~/.config/gitlab-token"), encoding="utf-8")
|
/third_party/node/deps/v8/tools/dev/ |
H A D | v8gen.py | 51 GOMA_DEFAULT = os.path.join(os.path.expanduser("~"), 'goma')
|
H A D | gm.py | 140 goma_auth = os.path.expanduser("~/.goma_client_oauth2_config")
|