Home
last modified time | relevance | path

Searched refs:parseList (Results 1 – 25 of 624) sorted by relevance

12345678910>>...25

/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/implicit-hie-0.1.2.6/test/
H A DSpec.hs75 ("one, two" :: Text) ~> parseList 1 `shouldParse` ["one", "two"]
78 ("one\n two \n three3" :: Text) ~> parseList 1
82 ("one\n two, three3" :: Text) ~> parseList 1
86 ("\"one\"\n two\n three3" :: Text) ~> parseList 1
90 ("one\n , two\n , three3" :: Text) ~> parseList 1
94 ("foo\n -- need to include this too\n bar\n" :: Text) ~> parseList 1
98 ("foo -- need to include this too\n bar\n" :: Text) ~> parseList 1
102 ("foo -- need to include this too\n bar" :: Text) ~> parseList 1
106 ("foo\n bar\n -- need to include this too" :: Text) ~> parseList 1
110 ("foo\n bar -- need to include this too" :: Text) ~> parseList 1
[all …]
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/
H A DFunctionSQL.java231 short[] parseList;
284 parseList = new short[] {
298 parseList = new short[] {
461 parseList = noParamList;
472 parseList = noParamList;
477 parseList = noParamList;
486 parseList = noParamList;
491 parseList = noParamList;
496 parseList = noParamList;
506 parseList = noParamList;
[all …]
/dports/sysutils/cbsd-mq-api/cbsd-mq-api-0.3/src/github.com/beanstalkd/go-beanstalk/
H A Dparse_test.go30 l := parseList([]byte("---\n- 1\n- 2\n"))
37 l := parseList([]byte{})
44 l := parseList(nil)
/dports/sysutils/cbsd-mq-router/cbsd-mq-router-0.2/src/github.com/beanstalkd/go-beanstalk/
H A Dparse_test.go30 l := parseList([]byte("---\n- 1\n- 2\n"))
37 l := parseList([]byte{})
44 l := parseList(nil)
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/implicit-hie-0.1.2.6/src/Hie/Cabal/
H A DParser.hs121 parseList :: Indent -> Parser [Text]
122 parseList i = many (nl <|> sl) function
147 <|> (field i "other-modules" parseList >>= flip (pathMain i p m) a)
148 <|> (field i "autogen-modules" parseList >>= pathMain i p m o)
190 hsSourceDir i = field i "hs-source-dirs" parseList
211 (field i "hs-source-dirs" parseList >>= (\p -> extractPath i $ ps <> p))
223 extractPkgs = join . catMaybes <$> many' (Just <$> field 0 "packages" parseList <|> (skipToNextLine…
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/
H A DMembersOrderPreferencePage.java110 List<String> entries= parseList(memberSortString); in MembersOrderPreferencePage()
113 entries= parseList(memberSortString); in MembersOrderPreferencePage()
132 entries= parseList(visibilitySortString); in MembersOrderPreferencePage()
135 entries= parseList(visibilitySortString); in MembersOrderPreferencePage()
140 private static List<String> parseList(String string) { in parseList() method in MembersOrderPreferencePage
237 fSortOrderList.setElements(parseList(str)); in performDefaults()
239 fSortOrderList.setElements(parseList(ALL_SORTMEMBER_ENTRIES)); in performDefaults()
243 fVisibilityOrderList.setElements(parseList(str)); in performDefaults()
245 fVisibilityOrderList.setElements(parseList(ALL_VISIBILITY_ENTRIES)); in performDefaults()
/dports/graphics/krita/krita-4.4.8/plugins/flake/artistictextshape/
H A DArtisticTextLoadingContext.cpp144 m_currentAbsolutePosX = parseList(element.attribute("x"), gc, XLength); in parseCharacterTransforms()
145 m_currentAbsolutePosY = parseList(element.attribute("y"), gc, YLength); in parseCharacterTransforms()
146 m_currentRelativePosX = parseList(element.attribute("dx"), gc, XLength); in parseCharacterTransforms()
147 m_currentRelativePosY = parseList(element.attribute("dy"), gc, YLength); in parseCharacterTransforms()
148 m_currentRotations = parseList(element.attribute("rotate"), gc, Number); in parseCharacterTransforms()
186 CharTransforms ArtisticTextLoadingContext::parseList(const QString &listString, SvgGraphicsContext … in parseList() function in ArtisticTextLoadingContext
/dports/editors/calligra/calligra-3.2.1/plugins/artistictextshape/
H A DArtisticTextLoadingContext.cpp138 m_currentAbsolutePosX = parseList(element.attribute("x"), gc, XLength); in parseCharacterTransforms()
139 m_currentAbsolutePosY = parseList(element.attribute("y"), gc, YLength); in parseCharacterTransforms()
140 m_currentRelativePosX = parseList(element.attribute("dx"), gc, XLength); in parseCharacterTransforms()
141 m_currentRelativePosY = parseList(element.attribute("dy"), gc, YLength); in parseCharacterTransforms()
142 m_currentRotations = parseList(element.attribute("rotate"), gc, Number); in parseCharacterTransforms()
180 CharTransforms ArtisticTextLoadingContext::parseList(const QString &listString, SvgGraphicsContext … in parseList() function in ArtisticTextLoadingContext
/dports/www/kf5-khtml/khtml-5.89.0/src/svg/
H A DSVGAnimationElement.cpp63 Vector<String> parseList; in parseKeyTimes() local
64 parse.split(';', parseList); in parseKeyTimes()
65 for (unsigned n = 0; n < parseList.size(); ++n) { in parseKeyTimes()
66 String timeString = parseList[n]; in parseKeyTimes()
91 Vector<String> parseList; in parseKeySplines() local
92 parse.split(';', parseList); in parseKeySplines()
93 for (unsigned n = 0; n < parseList.size(); ++n) { in parseKeySplines()
95 parseList[n].split(',', parseSpline); in parseKeySplines()
98 parseList[n].split(' ', parseSpline); in parseKeySplines()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/nim/suggest/
H A Dsexprparser.h72 return parseList(node); in parse()
76 bool parseList(Node &node) in parseList() function
101 if (!parseList(list)) { in parseList()
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net/gscloud/gscloud-0.11.0/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net/grpcui/grpcui-1.1.0/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net/grpcui/grpcui-1.1.0/vendor/github.com/envoyproxy/protoc-gen-validate/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net/inlets/inlets-3.0.2/vendor/golang.org/x/net/net-69a78807bb2b/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/finance/cointop/cointop-1.5.4/vendor/golang.org/x/net/net-da137c7871d7/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net-mgmt/blackbox_exporter/blackbox_exporter-0.17.0/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net-mgmt/bind_exporter/bind_exporter-0.4.0/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net-mgmt/adguard-exporter/adguard-exporter-1.14/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net/goreplay/goreplay-1.2.0/vendor/golang.org/x/net/net-ab3426394381/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/security/vault/vault-1.8.2/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/net/evans/evans-0.9.1/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/deskutils/pet/pet-0.4.0/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/devel/app-builder/app-builder-3.4.2/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func
/dports/dns/prometheus-dnssec-exporter/prometheus-dnssec-exporter-caa7d89/vendor/golang.org/x/net/webdav/
H A Dif.go42 l, remaining, ok := parseList(s)
67 l, remaining, ok := parseList(s)
83 func parseList(s string) (l ifList, remaining string, ok bool) { func

12345678910>>...25