Home
last modified time | relevance | path

Searched refs:as_posix (Results 1 – 18 of 18) sorted by relevance

/external/pigweed/pw_package/py/pw_package/packages/
Darduino_core.py73 _run_command(["cipd", "init", "-force", core_cache_path.as_posix()])
76 core_cache_path.as_posix(), "-force"
81 "\n".join([p.as_posix() for p in core_cache_path.glob("*")]))
89 core_installer.install_core(path.parent.resolve().as_posix(),
/external/pigweed/pw_arduino_build/py/pw_arduino_build/
Dunit_test_runner.py340 build_path = binary.parent.as_posix()
354 if run_device_test(binary.as_posix(),
Dcore_installer.py352 file_operations.git_apply_patch(patch_root_path.as_posix(),
353 diff_path.as_posix(),
Dteensy_detector.py79 "teensy_ports").absolute().as_posix(), "-L"]
Dbuilder.py325 "build.core.path"] = core_path.as_posix()
331 "{build.core.path}", core_path.as_posix())
1005 return [Path(lib).as_posix() for lib in self.library_folders()]
1024 sources.append((Path(lib_dir) / file_path).as_posix())
D__main__.py428 return input_path.as_posix()
/external/python/cpython3/Lib/
Dzipapp.py142 z.write(child, arcname.as_posix())
Dpathlib.py248 rest = path.as_posix()[2:].lstrip('/')
253 return 'file:' + urlquote_from_bytes(path.as_posix().encode('utf-8'))
744 def as_posix(self): member in PurePath
756 return "{}({!r})".format(self.__class__.__name__, self.as_posix())
/external/pigweed/pw_build/py/pw_build/
Dgenerate_python_package.py117 package_name = pkg.relative_to(root).as_posix().replace('/', '.')
Dpython_runner.py259 stamp_dir = target.out_dir.relative_to(paths.build).as_posix()
265 target.relative_dir).as_posix()
/external/pigweed/pw_presubmit/py/pw_presubmit/
Dtools.py140 if not any(e.search(relpath(path).as_posix()) for e in exclusions):
Dformat_code.py335 if any(path.as_posix().endswith(e)
Dpresubmit.py271 posix_paths = tuple(p.as_posix() for p in self._relative_paths)
/external/python/parse_type/tasks/_vendor/
Dpathlib.py241 rest = path.as_posix()[2:].lstrip('/')
246 return 'file:' + urlquote_from_bytes(path.as_posix().encode('utf-8'))
658 def as_posix(self): member in PurePath
672 return "{0}({1!r})".format(self.__class__.__name__, self.as_posix())
/external/python/pyfakefs/pyfakefs/
Dfake_pathlib.py366 rest = path.as_posix()[2:].lstrip('/')
372 urlquote_from_bytes(path.as_posix().encode('utf-8')))
/external/mesa3d/bin/pick/
Dcore.py90 'git', 'add', pick_status_json.as_posix(),
/external/python/cpython3/Doc/library/
Dpathlib.rst421 .. method:: PurePath.as_posix()
428 >>> p.as_posix()
/external/python/cpython3/Lib/test/
Dtest_pathlib.py270 self.assertEqual(P(pathstr).as_posix(), pathstr)
294 self.assertEqual(eval(inner), p.as_posix())
416 self.assertEqual(p.as_posix(), posix)