HomeSort by relevance Sort by last modified time
    Searched full:path (Results 1001 - 1025 of 27077) sorted by null

<<41424344454647484950>>

  /prebuilts/go/linux-x86/src/os/
stat_windows.go 89 fs.path = name
90 if !isAbs(fs.path) {
91 fs.path, e = syscall.FullPath(fs.path)
100 // directory name and drive letter from path name.
123 func isAbs(path string) (b bool) {
124 v := volumeName(path)
128 path = path[len(v):]
129 if path == ""
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/vinn/
_vinn.py 19 _V8_DIR = os.path.abspath(
20 os.path.join(os.path.dirname(__file__), os.path.pardir, 'third_party',
23 _JS_PARSER_DIR = os.path.abspath(
24 os.path.join(os.path.dirname(__file__), os.path.pardir, 'third_party',
28 _BOOTSTRAP_JS_DIR = os.path.abspath(
29 os.path.join(os.path.dirname(__file__), 'd8_bootstrap.js')
    [all...]
  /prebuilts/tools/linux-x86_64/kythe/extractors/
vnames.json 5 "path":"@1@",
13 "path":"@1@",
21 "path":"@1@",
29 "path":"@1@",
37 "path":"@1@",
45 "path":"@1@",
53 "path":"@1@",
61 "path":"@1@",
69 "path":"@1@",
77 "path":"@1@"
    [all...]
  /external/v8/build/android/gyp/
lint.py 20 _SRC_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__),
28 def _RelativizePath(path):
29 """Returns relative path to top-level src dir.
32 path: A path relative to cwd.
34 return os.path.relpath(os.path.abspath(path), _SRC_ROOT
    [all...]
  /external/dbus/dbus/
dbus-transport-unix.c 47 * path. This creates a client-side of a transport.
52 * @param path the path to the domain socket.
58 _dbus_transport_new_for_domain_socket (const char *path,
79 !_dbus_string_append (&address, "unix:path=")) ||
80 !_dbus_string_append (&address, path))
86 fd = _dbus_connect_unix_socket (path, abstract, error);
94 path);
120 * @param path the path to the domain socket
236 const char *path = dbus_address_entry_get_value (entry, "path"); local
281 const char *path; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/http/
PathMap.java 34 /** URI path map to Object.
35 * This mapping implements the path specification recommended
38 * Path specifications can be of the following forms:<PRE>
39 * /foo/bar - an exact path specification.
40 * /foo/* - a prefix path specification (must end '/*').
41 * *.ext - a suffix path specification.
42 * / - the default path specification.
50 * Multiple path specifications can be mapped by providing a list of
51 * specifications. By default this class uses characters ":," as path
57 * stripped from the path
    [all...]
  /art/test/081-hot-exceptions/
info.txt 1 Make a hot exception-throwing path to stress test how the trace builder handles
  /art/test/572-checker-array-get-regression/
info.txt 1 Regression test for the ARM64 Baker's read barrier fast path compiler
  /bionic/libc/kernel/tools/
update_all.py 9 usage: %(progname)s [kernel-original-path] [kernel-modified-path]
24 """ % { "progname" : os.path.basename(sys.argv[0]) }
40 if not os.path.isdir(original_dir):
45 if not os.path.isdir(modified_dir):
49 if not os.path.isdir(original_dir):
52 if not os.path.isdir(modified_dir):
57 original_dir = os.path.normpath(original_dir)
61 _, ext = os.path.splitext(file)
63 rel_path = os.path.normpath(os.path.join(root, file)
    [all...]
  /bionic/libc/tools/
generate-NOTICE.py 17 def IsUninteresting(path):
18 path = path.lower()
19 if path.endswith(".mk") or path.endswith(".py") or path.endswith(".pyc") or path.endswith(".txt") or path.endswith(".3"):
21 if path.endswith("/notice") or path.endswith("/readme") or path.endswith("/caveats")
116 path = os.path.join(directory, filename) variable
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PathClippingTests.java 22 import android.graphics.Path;
52 // draw circle with hole in it, by path operations + path clipping
56 Path path = new Path();
57 path.addCircle(30, 30, 50, Path.Direction.CW);
58 path.addCircle(30, 30, 30, Path.Direction.CCW)
    [all...]
  /dalvik/dx/tests/116-leb128/
info.txt 3 The run script requires vogar, so you must have vogar on your $PATH to run this
  /device/google/marlin/
sound_trigger_mixer_paths.xml 52 <path name="listen-voice-wakeup-1">
55 </path>
57 <path name="listen-voice-wakeup-2">
60 </path>
61 <path name="listen-voice-wakeup-3">
64 </path>
65 <path name="listen-voice-wakeup-4">
68 </path>
69 <path name="listen-voice-wakeup-5">
72 </path>
    [all...]
  /external/autotest/client/bin/
screenshot.py 11 argparser.add_argument("path", help="output image location")
16 sys.path.insert(0, "/usr/local/autotest")
18 # This import can't be moved to before the sys.path alteration.
22 image.save(args.path)
  /external/autotest/client/common_lib/
pidfile.py 7 self.path = os.path.join(results_dir, ".%s_execute" % label)
13 self.pid_file = open(self.path, "w")
16 logging.info("Logged pid %s to %s", os.getpid(), self.path)
  /external/autotest/client/deps/fakegudev/src/test_files/
fake_full.output 6 Sysfs path: /sys/devices/virtual/fake
fake_properties.output 6 Sysfs path: /sys/devices/virtual/fake
  /external/autotest/client/profilers/cpistat/
cpistat.py 18 cmd = os.path.join(self.bindir, 'site_cpistat')
19 if not os.path.exists(cmd):
20 cmd = os.path.join(self.bindir, 'cpistat')
21 logfile = open(os.path.join(test.profdir, "cpistat"), 'w')
  /external/autotest/client/
setup_modules.py 6 dirname = os.path.dirname(sys.modules[__name__].__file__)
7 common_dir = os.path.abspath(os.path.join(dirname, "common_lib"))
8 sys.path.insert(0, common_dir)
10 sys.path.pop(0)
40 def _import_children_into_module(parent_module_name, path):
41 """Import all the packages on a path into a parent module"""
42 # find all the packages at 'path'
44 for filename in os.listdir(path):
45 full_name = os.path.join(path, filename
    [all...]
  /external/autotest/client/site_tests/hardware_MultiReader/
hardware_MultiReader.py 15 for path in blockdev_paths:
16 removable = utils.read_one_line(path)
19 os.path.dirname(path))
  /external/autotest/site_utils/admin/
dev_manifest.xml 12 <project path="autotest"
15 <project path="autotest/site_utils/devserver"
18 <project remote="cros-internal" path="autotest/site_utils/autotest_tools"
20 <project remote="cros-internal" path="autotest/site_utils/autotest_private"
  /external/autotest/tko/
jsonp_fetcher.cgi 22 path = parameters['path'] variable
26 file_contents = urllib2.urlopen('http://localhost' + path).read()
29 result_dict['err'] = LogFileNotFound('%s not found' % path)
  /external/autotest/tko/parsers/test/
execute_parser.py 6 from os import path namespace
20 scenario_dirpath = path.normpath(args[0])
23 if not path.exists(scenario_dirpath) or not path.isdir(scenario_dirpath):
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_httpserver.py 23 wsgi_handler.path = '/path'
39 wsgi_handler.path = '/path'
  /external/chromium-trace/catapult/third_party/gsutil/
gsutil.py 39 GSUTIL_DIR = os.path.dirname(os.path.abspath(os.path.realpath(__file__)))
44 # The wrapper script adds all third_party libraries to the Python path, since
46 THIRD_PARTY_DIR = os.path.join(GSUTIL_DIR, 'third_party')
50 # add our bundled version of modules to the Python path.
59 # that needs to be added to sys.path.
76 if not os.path.isdir(os.path.join(THIRD_PARTY_DIR, libdir)):
82 sys.path.insert(0, os.path.join(THIRD_PARTY_DIR, libdir, subdir)
    [all...]

Completed in 1942 milliseconds

<<41424344454647484950>>