Home
last modified time | relevance | path

Searched refs:dropExtensions (Results 1 – 25 of 43) sorted by relevance

12

/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/filepath-bytestring-1.4.2.1.6/tests/
H A DTestEquiv.hs20 ,("equiv Posix.dropExtensions", equiv_1 OurPosix.dropExtensions TheirPosix.dropExtensions)
61 ,("equiv Windows.dropExtensions", equiv_1 OurWindows.dropExtensions TheirWindows.dropExtensions)
H A DTestGen.hs133 … x) x)", property $ \(QFilePath vx) -> let x = toRawFilePath vx in P.dropExtensions x == fromJust …
134 … x) x)", property $ \(QFilePath vx) -> let x = toRawFilePath vx in W.dropExtensions x == fromJust …
155 …nsions \"/directory/path.ext\" == \"/directory/path\"", property $ P.dropExtensions "/directory/pa…
156 …nsions \"/directory/path.ext\" == \"/directory/path\"", property $ W.dropExtensions "/directory/pa…
157 …,("P.dropExtensions \"file.tar.gz\" == \"file\"", property $ P.dropExtensions "file.tar.gz" == "fi…
158 …,("W.dropExtensions \"file.tar.gz\" == \"file\"", property $ W.dropExtensions "file.tar.gz" == "fi…
159 …roperty $ \(QFilePath vx) -> let x = toRawFilePath vx in not $ P.hasExtension $ P.dropExtensions x)
160 …roperty $ \(QFilePath vx) -> let x = toRawFilePath vx in not $ W.hasExtension $ W.dropExtensions x)
161 …x) -> let x = toRawFilePath vx in not $ any P.isExtSeparator $ P.takeFileName $ P.dropExtensions x)
162 …x) -> let x = toRawFilePath vx in not $ any W.isExtSeparator $ W.takeFileName $ W.dropExtensions x)
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/system-filepath-0.4.14/lib/Filesystem/
H A DPath.hs51 , dropExtensions
352 dropExtensions :: FilePath -> FilePath
353 dropExtensions p = p { pathExtensions = [] } function
362 replaceExtensions = addExtensions . dropExtensions
370 splitExtensions p = (dropExtensions p, extensions p)
/dports/devel/stack/stack-2.7.3/_cabal_deps/unicode-transforms-0.3.7.1/benchmark/
H A DBenchmark.hs23 import System.FilePath (dropExtensions, takeFileName)
64 where dataName = dropExtensions . takeFileName
/dports/textproc/hs-pandoc/pandoc-2.14.2/_cabal_deps/unicode-transforms-0.3.7.1/benchmark/
H A DBenchmark.hs23 import System.FilePath (dropExtensions, takeFileName)
64 where dataName = dropExtensions . takeFileName
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/unicode-transforms-0.3.7.1/benchmark/
H A DBenchmark.hs23 import System.FilePath (dropExtensions, takeFileName)
64 where dataName = dropExtensions . takeFileName
/dports/devel/stack/stack-2.7.3/test/integration/tests/mutable-deps/files/filepath-1.4.2.1/tests/
H A DTestGen.hs129 …ipExtension (P.takeExtensions x) x)", property $ \(QFilePath x) -> P.dropExtensions x == fromJust …
130 …ipExtension (W.takeExtensions x) x)", property $ \(QFilePath x) -> W.dropExtensions x == fromJust …
151 …nsions \"/directory/path.ext\" == \"/directory/path\"", property $ P.dropExtensions "/directory/pa…
152 …nsions \"/directory/path.ext\" == \"/directory/path\"", property $ W.dropExtensions "/directory/pa…
153 …,("P.dropExtensions \"file.tar.gz\" == \"file\"", property $ P.dropExtensions "file.tar.gz" == "fi…
154 …,("W.dropExtensions \"file.tar.gz\" == \"file\"", property $ W.dropExtensions "file.tar.gz" == "fi…
155 …sion $ P.dropExtensions x", property $ \(QFilePath x) -> not $ P.hasExtension $ P.dropExtensions x)
156 …sion $ W.dropExtensions x", property $ \(QFilePath x) -> not $ W.hasExtension $ W.dropExtensions x)
157 … x", property $ \(QFilePath x) -> not $ any P.isExtSeparator $ P.takeFileName $ P.dropExtensions x)
158 … x", property $ \(QFilePath x) -> not $ any W.isExtSeparator $ W.takeFileName $ W.dropExtensions x)
/dports/lang/ghc/ghc-8.10.7/libraries/filepath/tests/
H A DTestGen.hs129 …ipExtension (P.takeExtensions x) x)", property $ \(QFilePath x) -> P.dropExtensions x == fromJust …
130 …ipExtension (W.takeExtensions x) x)", property $ \(QFilePath x) -> W.dropExtensions x == fromJust …
151 …nsions \"/directory/path.ext\" == \"/directory/path\"", property $ P.dropExtensions "/directory/pa…
152 …nsions \"/directory/path.ext\" == \"/directory/path\"", property $ W.dropExtensions "/directory/pa…
153 …,("P.dropExtensions \"file.tar.gz\" == \"file\"", property $ P.dropExtensions "file.tar.gz" == "fi…
154 …,("W.dropExtensions \"file.tar.gz\" == \"file\"", property $ W.dropExtensions "file.tar.gz" == "fi…
155 …sion $ P.dropExtensions x", property $ \(QFilePath x) -> not $ P.hasExtension $ P.dropExtensions x)
156 …sion $ W.dropExtensions x", property $ \(QFilePath x) -> not $ W.hasExtension $ W.dropExtensions x)
157 … x", property $ \(QFilePath x) -> not $ any P.isExtSeparator $ P.takeFileName $ P.dropExtensions x)
158 … x", property $ \(QFilePath x) -> not $ any W.isExtSeparator $ W.takeFileName $ W.dropExtensions x)
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/shake-0.19.4/src/Development/Shake/
H A DFilePath.hs22 ,hasExtension, (<.>), splitExtensions, takeExtensions, dropExtensions
26 ,hasExtension, (<.>), splitExtensions, takeExtensions, dropExtensions
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/shake-0.19.4/src/Development/Shake/
H A DFilePath.hs22 ,hasExtension, (<.>), splitExtensions, takeExtensions, dropExtensions
26 ,hasExtension, (<.>), splitExtensions, takeExtensions, dropExtensions
/dports/devel/hs-shake/shake-0.19.6/src/Development/Shake/
H A DFilePath.hs22 ,hasExtension, (<.>), splitExtensions, takeExtensions, dropExtensions
26 ,hasExtension, (<.>), splitExtensions, takeExtensions, dropExtensions
/dports/devel/hs-ormolu/ormolu-0.4.0.0/src/Ormolu/Utils/
H A DExtensions.hs60 (takeDirectory cabalFile </>) <$> prependSrcDirs (dropExtensions m)
134 case M.lookup (dropExtensions sourceFile) extsByFile of
/dports/devel/stack/stack-2.7.3/test/integration/tests/mutable-deps/files/filepath-1.4.2.1/System/FilePath/
H A DInternal.hs78 splitExtensions, dropExtensions, takeExtensions, replaceExtensions, isExtensionOf,
370 dropExtensions :: FilePath -> FilePath
371 dropExtensions = fst . splitExtensions function
389 replaceExtensions x y = dropExtensions x <.> y
937 f x = map toUpper (dropWhileEnd (== ' ') $ dropExtensions x) `elem` badElements
/dports/lang/ghc/ghc-8.10.7/libraries/filepath/System/FilePath/
H A DInternal.hs78 splitExtensions, dropExtensions, takeExtensions, replaceExtensions, isExtensionOf,
369 dropExtensions :: FilePath -> FilePath
370 dropExtensions = fst . splitExtensions function
388 replaceExtensions x y = dropExtensions x <.> y
936 f x = map toUpper (dropWhileEnd (== ' ') $ dropExtensions x) `elem` badElements
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/filepath-bytestring-1.4.2.1.6/System/FilePath/
H A DInternal.hs108 splitExtensions, dropExtensions, takeExtensions, replaceExtensions, isExtensionOf,
472 dropExtensions :: RawFilePath -> RawFilePath
473 dropExtensions = fst . splitExtensions function
491 replaceExtensions x y = dropExtensions x <.> y
1080 f x = map toUpper (decodeFilePath $ dropWhileEnd (== 32) $ dropExtensions x) `elem` badElements
/dports/devel/stack/stack-2.7.3/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/devel/hs-hoogle/hoogle-5.0.18.2/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/www/hs-wai-app-static/wai-app-static-3.1.7.2/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/www/hs-yesod-bin/yesod-bin-1.6.1/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/easy-file-0.2.2/System/EasyFile/
H A DFilePath.hs27 splitExtensions, dropExtensions, takeExtensions,
261 dropExtensions :: FilePath -> FilePath
262 dropExtensions = fst . splitExtensions function
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ormolu-0.1.4.1/tests/Ormolu/
H A DPrinterSpec.hs60 F.addExtension (F.dropExtensions (fromRelFile path) ++ "-out") "hs"

12