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

1 2 3

  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system_util.py 5 import posixpath namespace
13 url = posixpath.join(urlprefix, root, f)
14 yield url, posixpath.join(directory, root, f)
redirector.py 5 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.join(*path
    [all...]
directory_zipper.py 6 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)
api_categorizer.py 6 import posixpath namespace
25 posixpath.join(PUBLIC_TEMPLATES, self._platform) + '/').Get()
31 public_templates.extend(posixpath.join(root, name) for name in files)
chroot_file_system.py 5 import posixpath namespace
32 prefixed = posixpath.join(self._root, path)
45 return self._file_system.Stat(posixpath.join(self._root, path))
preview.py 36 import posixpath namespace
46 if not posixpath.abspath(self.path.lstrip('/')).startswith(
47 posixpath.abspath('')):
template_data_source.py 6 import posixpath namespace
41 posixpath.join(self._dir, root, FormatKey(f)))
43 if posixpath.splitext(f)[1] == '.html']
path_canonicalizer.py 6 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)
sidenav_data_source.py 7 import posixpath namespace
97 posixpath.join(JSON_TEMPLATES, 'chrome_sidenav.json'))
103 posixpath.join(JSON_TEMPLATES, 'chrome_sidenav.json')).Get()
extensions_paths.py 5 from posixpath import join
local_file_system_test.py 8 import posixpath namespace
rietveld_patcher_test.py 7 import posixpath namespace
22 return [posixpath.join(prefix, item) for item in lst]
samples_model.py 7 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(
appengine_url_fetcher.py 7 import posixpath namespace
76 url = posixpath.join(self._base_path, url) if url else self._base_path
path_canonicalizer_test.py 6 import posixpath namespace
113 posixpath.splitext(SITE_VERIFICATION_FILE)[0])
render_refresher.py 6 import posixpath namespace
89 base, ext = posixpath.splitext(name)
  /external/chromium_org/native_client_sdk/src/tools/
nacl_config.py 13 import posixpath namespace
162 return posixpath.join(root, 'toolchain', subdir)
170 return posixpath.join(toolchain_dir, arch_dir)
175 return posixpath.join(GetToolchainDir(toolchain, arch), 'bin')
180 base_include = posixpath.join(root, 'include')
181 return [base_include, posixpath.join(base_include, toolchain)]
185 return posixpath.join(GetPosixSDKPath(), 'lib')
195 return posixpath.join(GetToolchainBinDir('newlib', 'x86_64'),
207 return posixpath.join(GetToolchainBinDir(toolchain, arch), full_tool_name)
  /external/chromium_org/build/android/pylib/symbols/mock_addr2line/
mock_addr2line 14 import posixpath namespace
27 lib_file_name = posixpath.basename(options.exe)
  /external/clang/tools/scan-view/
scan-view 7 import posixpath namespace
106 if not posixpath.exists(posixpath.join(root,'index.html')):
  /external/chromium_org/third_party/skia/gm/
gm_json.py 18 import posixpath namespace
135 return posixpath.join(
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
stacktrace.py 5 import posixpath namespace
72 return posixpath.basename(self.exec_file_rel_path.replace('\\', '/'))
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier.py 28 import posixpath namespace
90 posixpath.commonprefix implementation would do)
92 parts = posixpath.commonprefix(args).rpartition(posixpath.sep)[0]
93 return parts + posixpath.sep if parts else ''
123 src_dir = posixpath.dirname(src_file.replace('\\', '/')) + '/'
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_interfaces_info_individual.py 47 import posixpath namespace
89 return relative_dir_local.replace(os.path.sep, posixpath.sep)
104 return posixpath.join(relative_dir, cpp_class_name + '.h')
code_generator_v8.py 47 import posixpath namespace
135 header_path = posixpath.join(self.output_dir,
137 cpp_path = posixpath.join(self.output_dir, 'V8%s.cpp' % definition_name)
202 output_dir = posixpath.join(self.output_dir,
204 header_path = posixpath.join(output_dir, '%s.h' % definition_name)
205 cpp_path = posixpath.join(output_dir, '%s.cpp' % definition_name)
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_rendered_pictures_test.py 23 import posixpath namespace
144 setA_dir=posixpath.join(base_repo_url, 'expectations'),
145 setB_dir=posixpath.join(base_repo_url, 'actuals'),

Completed in 945 milliseconds

1 2 3