Searched defs:posixpath (Results 1 - 25 of 78) sorted by relevance

1234

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfile_system_util.py5 import posixpath namespace
13 url = posixpath.join(urlprefix, root, f)
14 yield url, posixpath.join(directory, root, f)
H A Dapi_categorizer.py6 import posixpath namespace
25 posixpath.join(PUBLIC_TEMPLATES, self._platform) + '/').Get()
31 public_templates.extend(posixpath.join(root, name) for name in files)
H A Ddirectory_zipper.py6 import posixpath namespace
32 self._file_system.ReadSingle(posixpath.join(base_dir, file_name)))
42 dir_name = posixpath.basename(base_dir)
43 zip_file.writestr(posixpath.join(dir_name, file_name), file_contents)
H A Dlocal_file_system_test.py8 import posixpath namespace
H A Dappengine_url_fetcher.py7 import posixpath namespace
76 url = posixpath.join(self._base_path, url) if url else self._base_path
H A Dchroot_file_system.py5 import posixpath namespace
32 prefixed = posixpath.join(self._root, path)
45 return self._file_system.Stat(posixpath.join(self._root, path))
H A Dpath_canonicalizer.py6 import posixpath namespace
15 normalized = posixpath.splitext(file_name)[0]
20 return posixpath.commonprefix((_Normalize(first_file),
56 path_without_ext, ext = posixpath.splitext(path)
57 canonical_path = posixpath.join(base, path_without_ext)
H A Dpath_util.py5 import posixpath namespace
34 return posixpath.join(*paths)
42 parent, base = posixpath.split(path.rstrip('/'))
86 last_path = posixpath.join(last_path, segment)
87 rel_path = posixpath.relpath(path, last_path)
H A Dpreview.py36 import posixpath namespace
46 if not posixpath.abspath(self.path.lstrip('/')).startswith(
47 posixpath.abspath('')):
H A Dredirector.py5 import posixpath namespace
31 dirname, filename = posixpath.split(url)
37 default_redirect = posixpath.normpath(Join(redirected_dirname, filename))
41 posixpath.normpath(Join(redirected_dirname,
53 return posixpath.normpath(Join(redirected_dirname, redirect))
69 redirects = self._cache.GetFromFile(posixpath.normpath(
70 posixpath.join(base, 'redirects.json'))).Get()
74 redirect = redirects.get(posixpath.join(filename, '...'))
86 Join(redirect, posixpath.relpath(url, sub_url)))
103 return 'https://developer.chrome.com/' + posixpath
[all...]
H A Dtemplate_data_source.py6 import posixpath namespace
41 posixpath.join(self._dir, root, FormatKey(f)))
43 if posixpath.splitext(f)[1] == '.html']
H A Drender_servlet.py7 import posixpath namespace
68 path_404 = posixpath.join(*(path_components[0:i] + ['404']))
95 redirect = '/' + posixpath.join(serve_from, redirect)
100 redirect_path = posixpath.join(serve_from, canonical_path)
H A Drietveld_patcher_test.py7 import posixpath namespace
22 return [posixpath.join(prefix, item) for item in lst]
H A Dsamples_model.py7 import posixpath namespace
122 posixpath.join(base_path, js_file)).Get()
157 extension_sample_path = posixpath.join('examples', sample_path)
163 posixpath.join(base_path, sample_path),
166 icon_path = posixpath.join(
H A Dsidenav_data_source.py7 import posixpath namespace
97 posixpath.join(JSON_TEMPLATES, 'chrome_sidenav.json'))
103 posixpath.join(JSON_TEMPLATES, 'chrome_sidenav.json')).Get()
/external/chromium_org/build/android/pylib/symbols/mock_addr2line/
H A Dmock_addr2line14 import posixpath namespace
27 lib_file_name = posixpath.basename(options.exe)
/external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
H A Dnacl.scons7 import posixpath namespace
/external/skia/tools/pyutils/
H A Dgs_utils.py16 import posixpath namespace
41 source_http_url = posixpath.join(
/external/qemu/distrib/libsparse/src/
H A Dsimg_dump.py18 import getopt, posixpath, signal, struct, sys namespace
31 me = posixpath.basename(sys.argv[0])
/external/skia/gm/rebaseline_server/
H A Dimagepair.py12 import posixpath namespace
65 expected_image_url=posixpath.join(base_url, imageA_relative_url),
67 actual_image_url=posixpath.join(base_url, imageB_relative_url))
/external/chromium_org/native_client_sdk/src/tools/
H A Ddecode_dump.py14 import posixpath namespace
57 filepart = posixpath.basename(filename)
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dgenerate_event_interfaces.py45 import posixpath namespace
87 relative_path_posix = relative_path_local.replace(os.sep, posixpath.sep)
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dimagepair.py12 import posixpath namespace
121 """Wrapper around posixpath.join().
123 Returns posixpath.join(*args), or None if any arg is None.
128 return posixpath.join(*args)
/external/chromium_org/tools/grit/
H A Dgrit_info.py11 import posixpath namespace
157 outputs = [posixpath.join(prefix, f)
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dstacktrace.py5 import posixpath namespace
72 return posixpath.basename(self.exec_file_rel_path.replace('\\', '/'))

Completed in 1785 milliseconds

1234