HomeSort by relevance Sort by last modified time
    Searched refs:expanduser (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
compat.py 40 # os.path.expanduser() will fail. Attempt to detect this case and use a
41 # no-op expanduser function in this case.
43 os.path.expanduser('~')
44 expanduser = os.path.expanduser variable
47 expanduser = (lambda x: x) variable
  /external/chromium-trace/catapult/tracing/tracing_build/
tracing_dev_server_config.py 55 ('/tracing/test_data/', os.path.expanduser(args.data_dir)),
56 ('/tracing/skp_data/', os.path.expanduser(args.skp_data_dir)),
  /prebuilts/gdb/darwin-x86/lib/python2.7/
user.py 33 home = os.path.expanduser("~/")
  /prebuilts/gdb/linux-x86/lib/python2.7/
user.py 33 home = os.path.expanduser("~/")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
user.py 33 home = os.path.expanduser("~/")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
user.py 33 home = os.path.expanduser("~/")
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
config.py 29 from boto.compat import expanduser, ConfigParser, StringIO namespace
36 UserConfigPath = os.path.join(expanduser('~'), '.boto')
42 BotoConfigLocations = [expanduser(os.environ['BOTO_CONFIG'])]
49 BotoConfigLocations.append(expanduser(path))
67 full_path = expanduser(os.environ['AWS_CREDENTIAL_FILE'])
  /external/v8/build/
symlink.py 38 t = os.path.expanduser(t)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_posixpath.py 197 self.assertEqual(posixpath.expanduser("foo"), "foo")
203 self.assertIsInstance(posixpath.expanduser("~/"), basestring)
205 if posixpath.expanduser("~") != '/':
207 posixpath.expanduser("~") + "/",
208 posixpath.expanduser("~/")
210 self.assertIsInstance(posixpath.expanduser("~root/"), basestring)
211 self.assertIsInstance(posixpath.expanduser("~foo/"), basestring)
215 self.assertEqual(posixpath.expanduser("~"), "/")
216 self.assertEqual(posixpath.expanduser("~/foo"), "/foo")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_posixpath.py 197 self.assertEqual(posixpath.expanduser("foo"), "foo")
203 self.assertIsInstance(posixpath.expanduser("~/"), basestring)
205 if posixpath.expanduser("~") != '/':
207 posixpath.expanduser("~") + "/",
208 posixpath.expanduser("~/")
210 self.assertIsInstance(posixpath.expanduser("~root/"), basestring)
211 self.assertIsInstance(posixpath.expanduser("~foo/"), basestring)
215 self.assertEqual(posixpath.expanduser("~"), "/")
216 self.assertEqual(posixpath.expanduser("~/foo"), "/foo")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 197 self.assertEqual(posixpath.expanduser("foo"), "foo")
203 self.assertIsInstance(posixpath.expanduser("~/"), basestring)
205 if posixpath.expanduser("~") != '/':
207 posixpath.expanduser("~") + "/",
208 posixpath.expanduser("~/")
210 self.assertIsInstance(posixpath.expanduser("~root/"), basestring)
211 self.assertIsInstance(posixpath.expanduser("~foo/"), basestring)
215 self.assertEqual(posixpath.expanduser("~"), "/")
216 self.assertEqual(posixpath.expanduser("~/foo"), "/foo")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 197 self.assertEqual(posixpath.expanduser("foo"), "foo")
203 self.assertIsInstance(posixpath.expanduser("~/"), basestring)
205 if posixpath.expanduser("~") != '/':
207 posixpath.expanduser("~") + "/",
208 posixpath.expanduser("~/")
210 self.assertIsInstance(posixpath.expanduser("~root/"), basestring)
211 self.assertIsInstance(posixpath.expanduser("~foo/"), basestring)
215 self.assertEqual(posixpath.expanduser("~"), "/")
216 self.assertEqual(posixpath.expanduser("~/foo"), "/foo")
  /external/autotest/client/bin/
os_dep.py 13 file = os.path.join(os.path.expandvars(os.path.expanduser(dir)), cmd)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
keypair.py 80 directory_path = os.path.expanduser(directory_path)
  /external/chromium-trace/catapult/tracing/tracing/mre/
local_directory_corpus_driver.py 41 trace_dir = os.path.abspath(os.path.expanduser(args.trace_directory))
  /tools/test/connectivity/acts/framework/acts/controllers/
diag_logger.py 102 self.host_log_path = os.path.realpath(os.path.expanduser(
iperf_server.py 50 self.log_path = os.path.join(os.path.expanduser(log_path), "iPerf")
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
gen_client.py 120 infile = os.path.expanduser(FLAGS.infile) or '/dev/stdin'
159 outdir = os.path.expanduser(FLAGS.outdir) or client_info.default_directory
246 original_outdir = os.path.expanduser(FLAGS.outdir)
  /external/deqp/android/scripts/
common.py 244 os.path.expanduser("~/android-ndk-r11"),
277 os.path.expanduser("~/android-sdk-linux"),
278 os.path.expanduser("~/android-sdk-mac_x86"),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install.py 86 self.old_expand = os.path.expanduser
87 os.path.expanduser = _expanduser
94 os.path.expanduser = self.old_expand
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install.py 86 self.old_expand = os.path.expanduser
87 os.path.expanduser = _expanduser
94 os.path.expanduser = self.old_expand
  /development/tools/checkstyle/gitlint/
utils.py 76 home_folder = os.path.expanduser('~')
  /external/chromium-trace/catapult/systrace/systrace/tracing_agents/
atrace_from_file_agent.py 45 self._filename = os.path.expanduser(options.from_file)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
iobject.py 95 val = os.path.expanduser(val)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
submit.py 57 path = os.path.expanduser(path)

Completed in 1174 milliseconds

1 2 3 4 5 6 7