Home
last modified time | relevance | path

Searched refs:WindowsPath (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/unittests/
DPathMappingTests.cpp31 TEST(ParsePathMappingTests, WindowsPath) { in TEST() argument
/external/python/pyfakefs/pyfakefs/
Dfake_pathlib.py462 cls = (FakePathlibModule.WindowsPath if os.name == 'nt'
674 class WindowsPath(FakePath, PureWindowsPath): class in FakePathlibModule
/external/python/cpython3/Doc/library/
Dpathlib.rst32 You cannot instantiate a :class:`WindowsPath` when running on Unix, but you
631 :class:`PosixPath` or a :class:`WindowsPath`)::
648 .. class:: WindowsPath(*pathsegments)
653 >>> WindowsPath('c:/Program Files/')
654 WindowsPath('c:/Program Files')
669 >>> WindowsPath('setup.py')
674 NotImplementedError: cannot instantiate 'WindowsPath' on your system
/external/python/parse_type/tasks/_vendor/
Dpathlib.py935 cls = WindowsPath if os.name == 'nt' else PosixPath
1278 class WindowsPath(Path, PureWindowsPath): class
/external/python/cpython3/Lib/
Dpathlib.py1070 cls = WindowsPath if os.name == 'nt' else PosixPath
1568 class WindowsPath(Path, PureWindowsPath): class
/external/python/pyfakefs/pyfakefs/tests/
Dfake_pathlib_test.py67 self.assertTrue(isinstance(path, self.pathlib.WindowsPath))
76 self.pathlib.WindowsPath)
/external/python/cpython3/Lib/test/
Dtest_pathlib.py1311 cls = pathlib.WindowsPath
2313 pathlib.WindowsPath if os.name == 'nt' else pathlib.PosixPath)
2319 self.assertRaises(NotImplementedError, pathlib.WindowsPath)
2484 cls = pathlib.WindowsPath
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp540 TEST_F(InMemoryFileSystemTest, WindowsPath) { in TEST_F() argument
/external/llvm-project/llvm/unittests/Support/
DVirtualFileSystemTest.cpp913 TEST_F(InMemoryFileSystemTest, WindowsPath) { in TEST_F() argument
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst1257 The case the result of :func:`pathlib.WindowsPath.glob` matches now the case