Home
last modified time | relevance | path

Searched refs:isAlphaNum (Results 1 – 25 of 1150) sorted by relevance

12345678910>>...46

/dports/lang/elm/elm-compiler-bootstrap-0.19.1/0.19.1/packages/elm/core/1.0.2/src/
H A DChar.elm3 , isUpper, isLower, isAlpha, isAlphaNum
129 isAlphaNum 'a' == True
130 isAlphaNum 'b' == True
131 isAlphaNum 'E' == True
132 isAlphaNum 'Y' == True
133 isAlphaNum '0' == True
134 isAlphaNum '7' == True
136 isAlphaNum '-' == False
137 isAlphaNum 'π' == False
139 isAlphaNum : Char -> Bool
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/pressly/goose/
H A Dhelpers.go22 if isAlphaNum(r) {
26 if isAlphaNum(r) {
31 if !isAlphaNum(r) {
35 if isAlphaNum(r) {
82 func isAlphaNum(r rune) bool { func
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/pressly/goose/
H A Dhelpers.go22 if isAlphaNum(r) {
26 if isAlphaNum(r) {
31 if !isAlphaNum(r) {
35 if isAlphaNum(r) {
82 func isAlphaNum(r rune) bool { func
/dports/lang/ghc/ghc-8.10.7/libraries/Cabal/cabal-install/Distribution/Deprecated/
H A DText.hs83 cs <- Parse.munch1 isAlphaNum
131 name <- Parse.munch1 isAlphaNum
142 comp <- Parse.munch1 isAlphaNum
154 where abi_char c = isAlphaNum c || c `elem` "-_."
182 extension <- Parse.munch1 isAlphaNum
191 lead = Parse.satisfy (\c -> isAlphaNum c || c == '_')
200 lang <- Parse.munch1 isAlphaNum
205 name <- Parse.munch1 (\c -> isAlphaNum c && c /= '-')
254 <$> Parse.munch1 (\c -> isAlphaNum c || c `elem` "+-._")
369 cs <- Parse.munch1 isAlphaNum
[all …]
/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/commonmark-0.1.1.4/src/Commonmark/
H A DTokens.hs14 import Data.Char (isAlphaNum, isSpace)
43 f x y = isAlphaNum x && isAlphaNum y
58 | isAlphaNum thead ->
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/commonmark-0.1.1.4/src/Commonmark/
H A DTokens.hs14 import Data.Char (isAlphaNum, isSpace)
43 f x y = isAlphaNum x && isAlphaNum y
58 | isAlphaNum thead ->
/dports/www/Stikked/Stikked-0.13.0/htdocs/application/libraries/
H A DJsmin.php176 protected function isAlphaNum($c) { function in JSMin
188 if ($this->isAlphaNum($this->b)) {
210 if ($this->isAlphaNum($this->b)) {
222 if ($this->isAlphaNum($this->a)) {
243 if ($this->isAlphaNum($this->a)) {
/dports/devel/pear-phing/phing-2.6.1/tasks/ext/jsmin/
H A DJsMin.php159 protected function isAlphaNum($c) { function in JSMin
170 if ($this->isAlphaNum($this->b)) {
192 if ($this->isAlphaNum($this->b)) {
204 if ($this->isAlphaNum($this->a)) {
225 if ($this->isAlphaNum($this->a)) {
/dports/textproc/hs-pandoc/pandoc-2.14.2/_cabal_deps/commonmark-0.2.1/src/Commonmark/
H A DTokens.hs13 import Data.Char (isAlphaNum, isSpace)
44 f x y = isAlphaNum x && isAlphaNum y
59 | isAlphaNum thead ->
/dports/www/zenphoto/zenphoto-1.5.9/zp-core/zp-extensions/common/jsMin/
H A DJSMin.php103 if (! $this->isAlphaNum($this->b)) {
110 && ! $this->isAlphaNum($this->b)) {
113 } elseif (! $this->isAlphaNum($this->a)) {
203 if (! $this->isAlphaNum($charBeforeKeyword)) {
247 protected function isAlphaNum($c) function in JSMin
/dports/www/ilias/ILIAS-5.4.25/Modules/Scorm2004/classes/
H A DJSMin_lib.php220 public function isAlphaNum($c) function in JSMin
584 if (JSMin::isAlphaNum($this->theB)) {
608 if (JSMin::isAlphaNum($this->theB)) {
624 if (JSMin::isAlphaNum($this->theA)) {
646 if (JSMin::isAlphaNum($this->theA)) {
/dports/www/ilias6/ILIAS-6.14/Modules/Scorm2004/classes/
H A DJSMin_lib.php220 public function isAlphaNum($c) function in JSMin
584 if (JSMin::isAlphaNum($this->theB)) {
608 if (JSMin::isAlphaNum($this->theB)) {
624 if (JSMin::isAlphaNum($this->theA)) {
646 if (JSMin::isAlphaNum($this->theA)) {
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/base/util/minify/
H A DJSMin.php128 } elseif (! $this->isAlphaNum($this->b)) {
139 && ! $this->isAlphaNum($this->b))) {
142 } elseif (! $this->isAlphaNum($this->a)) {
291 if (! $this->isAlphaNum($charBeforeKeyword)) {
356 protected function isAlphaNum($c) function in GO\\Base\\Util\\Minify\\JSMin
/dports/lang/ghc/ghc-8.10.7/libraries/haskeline/System/Console/Haskeline/
H A DEmacs.hs96 wordRight = goRightUntil (atStart (not . isAlphaNum))
97 wordLeft = goLeftUntil (atStart isAlphaNum)
103 IMode xs ys = skipRight (not . isAlphaNum) im
104 (ys1,ys2) = span (isAlphaNum . baseChar) ys
/dports/lang/elm/compiler-0.19.1/_cabal_deps/haskeline-0.8.0.0/System/Console/Haskeline/
H A DEmacs.hs96 wordRight = goRightUntil (atStart (not . isAlphaNum))
97 wordLeft = goLeftUntil (atStart isAlphaNum)
103 IMode xs ys = skipRight (not . isAlphaNum) im
104 (ys1,ys2) = span (isAlphaNum . baseChar) ys
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/haskeline-0.8.2/System/Console/Haskeline/
H A DEmacs.hs96 wordRight = goRightUntil (atStart (not . isAlphaNum))
97 wordLeft = goLeftUntil (atStart isAlphaNum)
103 IMode xs ys = skipRight (not . isAlphaNum) im
104 (ys1,ys2) = span (isAlphaNum . baseChar) ys
/dports/finance/prestashop/prestashop/vendor/mrclay/minify/min/lib/
H A DJSMin.php129 } elseif (! $this->isAlphaNum($this->b)) {
140 && ! $this->isAlphaNum($this->b))) {
143 } elseif (! $this->isAlphaNum($this->a)) {
301 if ($this->isAlphaNum($charBeforeKeyword)) {
371 protected function isAlphaNum($c) function in JSMin
/dports/www/elgg/elgg-3.3.23/vendor/mrclay/minify/min/lib/
H A DJSMin.php129 } elseif (! $this->isAlphaNum($this->b)) {
140 && ! $this->isAlphaNum($this->b))) {
143 } elseif (! $this->isAlphaNum($this->a)) {
301 if ($this->isAlphaNum($charBeforeKeyword)) {
371 protected function isAlphaNum($c) function in JSMin
/dports/www/thirtybees/thirtybees-1.1.0/vendor/mrclay/minify/min/lib/
H A DJSMin.php129 } elseif (! $this->isAlphaNum($this->b)) {
140 && ! $this->isAlphaNum($this->b))) {
143 } elseif (! $this->isAlphaNum($this->a)) {
301 if ($this->isAlphaNum($charBeforeKeyword)) {
371 protected function isAlphaNum($c) function in JSMin
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/Cabal-3.4.0.0/tests/UnitTests/Distribution/Utils/
H A DCharSet.hs8 import Data.Char (isAlpha, isAlphaNum)
19 [ c | c <- [ minBound .. maxBound ], isAlphaNum c ]
/dports/devel/hs-cabal-install/cabal-cabal-install-3.4.0.0/Cabal/tests/UnitTests/Distribution/Utils/
H A DCharSet.hs8 import Data.Char (isAlpha, isAlphaNum)
19 [ c | c <- [ minBound .. maxBound ], isAlphaNum c ]
/dports/security/xray-core/Xray-core-1.5.0/common/net/
H A Daddress.go70 func isAlphaNum(c byte) bool { func
84 if lenAddr > 0 && (!isAlphaNum(addr[0]) || !isAlphaNum(addr[len(addr)-1])) {
/dports/net/v2ray/v2ray-core-4.36.2/common/net/
H A Daddress.go70 func isAlphaNum(c byte) bool {
84 if lenAddr > 0 && (!isAlphaNum(addr[0]) || !isAlphaNum(addr[len(addr)-1])) {
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/
H A Ddemangle.d52 import std.ascii : isAlphaNum;
64 l => l.chunkBy!(a => isAlphaNum(a) || a == '_') in main()
/dports/devel/hs-git-brunch/git-brunch-1.5.1.0/_cabal_deps/hspec-core-2.7.10/test/Test/Hspec/Core/Formatters/
H A DDiffSpec.hs42 breakList isAlphaNum "foo bar baz" `shouldBe` ["foo", " ", "bar", " ", " ", "baz"]
46 …breakList isAlphaNum " foo bar baz " `shouldBe` [" ", " ", "foo", " ", "bar", " ", " ", "baz", …

12345678910>>...46