Home
last modified time | relevance | path

Searched refs:stripComments (Results 1 – 25 of 215) sorted by relevance

123456789

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/test/unittests/front_end/sdk/
H A DCSSPropertyParser_test.ts11 const stripComments = SDK.CSSPropertyParser.stripComments; constant
14 assert.strictEqual(stripComments('text /* comment */ text'), 'text text');
19 stripComments(`text /* comment
25 assert.strictEqual(stripComments('text /* comment /* comment */ text'), 'text text');
29 …assert.strictEqual(stripComments('text /* comment */ text /* comment */ text'), 'text text text'…
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/sigs.k8s.io/kustomize/kyaml/kio/filters/
H A Dstripcomments.go17 stripComments(slice[i].YNode())
22 func stripComments(node *yaml.Node) { func
30 stripComments(node.Content[i])
/dports/mail/squirrelmail/squirrelmail.stable/squirrelmail/class/mime/
H A DRfc822Header.class.php176 function stripComments($value) { function in Rfc822Header
227 $value = $this->stripComments($value);
261 $value = $this->stripComments($value);
265 $value = $this->stripComments($value);
271 $value = $this->stripComments($value);
275 $value = $this->stripComments($value);
280 $value = $this->stripComments($value);
284 $value = $this->stripComments($value);
297 $value = $this->stripComments($value);
301 $value = $this->stripComments($value);
[all …]
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Interaction/Library/
H A DParse.hs178 groupLines =<< concat <$> zipWithM parseLine [1..] (map stripComments $ lines s)
248 trimLineComment = stripComments . ltrim
255 stripComments :: String -> String
256 stripComments "" = "" function
257 stripComments ('-':'-':c:_) | isSpace c = "" function
258 stripComments (c : s) = cons c (stripComments s) function
/dports/mail/pear-MIME_Type/MIME_Type-1.4.1/tests/
H A DTypeTest.php80 $this->assertEquals('def', MIME_Type::stripComments('(abc)def(ghi)', $null));
81 $this->assertEquals('def', MIME_Type::stripComments('(abc)def', $null));
82 $this->assertEquals('def', MIME_Type::stripComments('def(ghi)', $null));
89 'def', MIME_Type::stripComments('(\)abc)def(\))', $comment)
98 'foo', MIME_Type::stripComments('\\foo(abc)', $comment)
105 $this->assertEquals('def', MIME_Type::stripComments('(a"bc)def")def', $null));
106 $this->assertEquals('(abc)def', MIME_Type::stripComments('"(abc)def"', $null));
114 MIME_Type::stripComments('(abc)def(ghi)', $comment)
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/pug-strip-comments/
H A DREADME.md18 var stripComments = require('pug-strip-comments');
27 stripComments(tokens, { filename: 'pug' });
33 stripComments(tokens, { filename: 'pug', stripUnbuffered: false, stripBuffered: true });
39 stripComments(tokens, { filename: 'pug', stripBuffered: true });
/dports/www/thirtybees/thirtybees-1.1.0/vendor/dlundgren/css-splitter/src/
H A DSplitter.php174 $css = $this->stripComments($css);
234 $rules = preg_split('/}/', trim($this->stripComments($css)));
254 $lines = explode('{', $this->stripComments($rule));
280 private function stripComments($string) function in CssSplitter\\Splitter
/dports/devel/pear-PHPTAL/PHPTAL-1.3.0/tests/
H A DPhptalTest.php135 $tpl->stripComments(true);
145 $tpl->stripComments(false);
146 $tpl->stripComments(true);
156 $tpl->stripComments(true);
157 $tpl->stripComments(false);
/dports/misc/cryptoballot/cryptoballot-3753e1b/vendor/github.com/dlintw/goconf/
H A Dread.go92 value := strings.TrimSpace(stripComments(l[i+1:]))
97 value := strings.TrimSpace(stripComments(l))
113 func stripComments(l string) string { func
/dports/net-im/nextcloud-spreed-signaling/nextcloud-spreed-signaling-0.2.0/vendor/src/github.com/dlintw/goconf/
H A Dread.go92 value := strings.TrimSpace(stripComments(l[i+1:]))
97 value := strings.TrimSpace(stripComments(l))
113 func stripComments(l string) string { func
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/pandoc-2.11.4/src/Text/Pandoc/Lua/Marshaling/
H A DReaderOptions.hs50 (stripComments :: Bool)
61 LuaUtil.addField "strip_comments" stripComments
71 "stripComments" -> Lua.push stripComments
/dports/textproc/hs-pandoc/pandoc-2.14.2/src/Text/Pandoc/Lua/Marshaling/
H A DReaderOptions.hs50 (stripComments :: Bool)
61 LuaUtil.addField "strip_comments" stripComments
71 "stripComments" -> Lua.push stripComments
/dports/www/bolt/bolt-2.2.24/vendor/tdammers/htmlmaid/src/Maid/
H A DMaid.php12 private $stripComments; variable in Maid\\Maid
75 $this->stripComments = (bool)$options['strip-comments'];
78 $this->stripComments = false;
293 if (!$this->stripComments) {
/dports/devel/jsonnet/jsonnet-0.17.0/core/
H A Dformatter.h29 bool stripComments; member
41 stripComments(false), in FmtOpts()
/dports/devel/py-jsonnet/jsonnet-0.17.0/core/
H A Dformatter.h29 bool stripComments; member
41 stripComments(false), in FmtOpts()
/dports/devel/RStudio/rstudio-2021.09.1-372/dependencies/common/rsconnect/R/
H A Dlinters.R4 content <- stripComments(content)
23 content <- stripComments(content)
43 content <- stripComments(content)
/dports/security/ffuf/ffuf-1.3.1/pkg/input/
H A Dwordlist.go122 text, ok = stripComments(text)
133 text, ok = stripComments(text)
151 func stripComments(text string) (string, bool) { func
/dports/www/bolt/bolt-2.2.24/vendor/stecman/symfony-console-completion/src/
H A DHookFactory.php164 $this->stripComments(self::$hooks[$type])
203 protected function stripComments($script) function in Stecman\\Component\\Symfony\\Console\\BashCompletion\\HookFactory
/dports/www/nextcloud/nextcloud/3rdparty/stecman/symfony-console-completion/src/
H A DHookFactory.php171 $this->stripComments(self::$hooks[$type])
210 protected function stripComments($script) function in Stecman\\Component\\Symfony\\Console\\BashCompletion\\HookFactory
/dports/finance/hs-hledger/hledger-1.19/_cabal_deps/shakespeare-2.0.25/Text/
H A DIndentToBrace.hs17 . stripComments
21 stripComments :: [String] -> [String]
22 stripComments = function
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/shakespeare-2.0.25/Text/
H A DIndentToBrace.hs17 . stripComments
21 stripComments :: [String] -> [String]
22 stripComments = function
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/shakespeare-2.0.25/Text/
H A DIndentToBrace.hs17 . stripComments
21 stripComments :: [String] -> [String]
22 stripComments = function
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/shakespeare-2.0.24/Text/
H A DIndentToBrace.hs17 . stripComments
21 stripComments :: [String] -> [String]
22 stripComments = function
/dports/www/hs-DAV/DAV-1.3.4/_cabal_deps/shakespeare-2.0.24.1/Text/
H A DIndentToBrace.hs17 . stripComments
21 stripComments :: [String] -> [String]
22 stripComments = function
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/sigs.k8s.io/kustomize/kyaml/yaml/
H A Dmatch.go50 func (p *PathMatcher) stripComments(n *Node) { func
59 p.stripComments(n.Content[i])
69 p.stripComments(val.YNode())

123456789