Home
last modified time | relevance | path

Searched refs:regex (Results 101 – 125 of 380) sorted by relevance

12345678910>>...16

/plugin/davcard/vendor/sabre/vobject/lib/
H A DDateTimeParser.php250 $regex = '/^
273 if (!preg_match($regex, $date, $matches)) {
276 $regex = '/^
298 if (!preg_match($regex, $date, $matches)) {
373 $regex = '/^
387 if (!preg_match($regex, $date, $matches)) {
390 $regex = '/^
403 if (!preg_match($regex, $date, $matches)) {
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php250 $regex = '/^
273 if (!preg_match($regex, $date, $matches)) {
276 $regex = '/^
298 if (!preg_match($regex, $date, $matches)) {
373 $regex = '/^
387 if (!preg_match($regex, $date, $matches)) {
390 $regex = '/^
403 if (!preg_match($regex, $date, $matches)) {
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php250 $regex = '/^
273 if (!preg_match($regex, $date, $matches)) {
276 $regex = '/^
298 if (!preg_match($regex, $date, $matches)) {
373 $regex = '/^
387 if (!preg_match($regex, $date, $matches)) {
390 $regex = '/^
403 if (!preg_match($regex, $date, $matches)) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/
H A DParameterValidation.php30 public function setRegex(RegexValidation $regex) argument
32 $this->regex = $regex;
39 return $this->regex;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D42.42.js.map1regex: /[ \\t\\r\\n]+/, action: { token: '' } },\n // NOTE: (*) is an invalid ML-like c…
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushVb.js24 { regex: /'.*$/gm, css: 'comments' }, // one line comments
25 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
26 …{ regex: /^\s*#.*$/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr…
27 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // vb keyword
H A DshBrushXml.js20 regex = XRegExp('(?<name> [\\w:.-]+)' +
25 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
42 …{ regex: XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'), css: 'color2' …
43 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // <!-- ... -->
44 …{ regex: XRegExp('(&lt;|<)[\\s\\/\\?!]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func:…
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushVb.js40 { regex: /'.*$/gm, css: 'comments' }, // one line comments
41 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
42 …{ regex: /^\s*#.*$/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr…
43 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // vb keyword
H A DshCore.js124 return regex;
161 if (regex.xregexp && !regex.xregexp.isNative) {
163 regex = augment(self(regex.source, flags),
167 regex = augment(new RegExp(regex.source, flags), null, true);
169 return regex;
404 if (regex) {
670 var item = chain[level].regex ? chain[level] : {regex: chain[level]},
977 regex = new RegExp(regex); // Use native `RegExp`
2013 regex = XRegExp(
2218 regex = /^\s*/,
[all …]
H A DshBrushXml.js36 regex = XRegExp('(?<name> [\\w:.-]+)' +
41 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
58 …{ regex: XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'), css: 'color2' …
59 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // <!-- ... -->
60 …{ regex: XRegExp('(&lt;|<)[\\s\\/\\?!]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func:…
/plugin/blogtng/exe/
H A Dpingback.php103 $regex = '!<a[^>]+?href="' . $searchurl . '"[^>]*?>(.*?)</a>!is';
105 if (!preg_match($regex, $page, $match) && !preg_match($regex2, $page, $match)) {
111 $regex = '!<a[^>]+?href="' . $searchurl . '"[^>]*?>(.*?)</a>!is';
113 if (!preg_match($regex, $page, $match) && !preg_match($regex2, $page, $match))
121 $regex = '!<title.*?>(.*?)</title>!is';
122 if (!preg_match($regex, $page, $match))
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2ExclusionRule.php78 public function setRegex(GooglePrivacyDlpV2Regex $regex) argument
80 $this->regex = $regex;
87 return $this->regex;
H A DGooglePrivacyDlpV2StoredInfoTypeConfig.php96 public function setRegex(GooglePrivacyDlpV2Regex $regex) argument
98 $this->regex = $regex;
105 return $this->regex;
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfckjustifycommands.js60 var regex = FCKJustifyCommand._ClassRegex ;
61 if ( regex != undefined )
62 return regex ;
78 regex = new RegExp( '(?:^|\\s+)(?:' + names.join( '|' ) + ')(?=$|\\s)' ) ;
80 regex = null ;
82 return FCKJustifyCommand._ClassRegex = regex ;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUriNormalizer.php185 $regex = '/(?:%[A-Fa-f0-9]{2})++/';
193 preg_replace_callback($regex, $callback, $uri->getPath())
195 preg_replace_callback($regex, $callback, $uri->getQuery())
201 $regex = '/%(?:2D|2E|5F|7E|3[0-9]|[46][1-9A-F]|[57][0-9A])/i';
209 preg_replace_callback($regex, $callback, $uri->getPath())
211 preg_replace_callback($regex, $callback, $uri->getQuery())
/plugin/linkback/action/
H A Dantispam.php77 $regex = '!<a\s.*?</a>!is';
78 if (preg_match($regex, $excerpt) > $this->getConf('antispam_linkcount_max'))
117 $regex = '!<a[^>]+?href="' . $searchurl . '"[^>]*?>(.*?)</a>!is';
119 if (!preg_match($regex, $page['body'], $match) && !preg_match($regex2, $page['body'], $match)) {
124 $regex = '!<a[^>]+?href="' . $searchurl . '"[^>]*?>(.*?)</a>!is';
126 if (!preg_match($regex, $page['body'], $match) && !preg_match($regex2, $page['body'], $match))
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDateTimeParser.php267 $regex = '/^
290 if (!preg_match($regex, $date, $matches)) {
292 $regex = '/^
314 if (!preg_match($regex, $date, $matches)) {
386 $regex = '/^
399 if (!preg_match($regex, $date, $matches)) {
401 $regex = '/^
414 if (!preg_match($regex, $date, $matches)) {
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DDateTimeParser.php275 $regex = '/^
298 if (!preg_match($regex, $date, $matches)) {
301 $regex = '/^
323 if (!preg_match($regex, $date, $matches)) {
399 $regex = '/^
413 if (!preg_match($regex, $date, $matches)) {
416 $regex = '/^
429 if (!preg_match($regex, $date, $matches)) {
/plugin/dev/
H A DLangProcessor.php193 $regex = '/\bLANG' . $sep . 'plugins' . $sep . $any . $close . '(?:' . $dotvalue . '|' . $bracketvalue . ')/';
194 // echo "\n\n$regex\n\n";
196 return $this->extract($file, $regex);
207 $regex = '/(?:tpl_getLang|->getLang) ?\((.*?)\)/';
208 return $this->extract($file, $regex);
212 * Use the given regex to extract language keys from the given file
215 * @param string $regex
218 private function extract($file, $regex) argument
223 if (!preg_match_all($regex, $line, $matches, PREG_SET_ORDER)) {
/plugin/eventline/
H A Dscript.js75 var regex = new RegExp(text, "i");
77 return regex.test(evt.getText()) || regex.test(evt.getDescription());
97 var regex = regexes[x];
98 if (regex != null && (regex.test(text) || regex.test(description))) {
/plugin/codemirror/dist/modes/
H A Dwast.min.js.map1regex","token","next","indent","dedent","comment","meta","dontIndentStates","defineMIME"],"mapping…
/plugin/codeprettify/code-prettify/src/
H A Dnode_prettify.js288 var regex = regexs[i];
289 if (regex.ignoreCase) {
291 } else if (/[a-z]/i.test(regex.source.replace(
407 function allowAnywhereFoldCaseAndRenumberGroups(regex) { argument
411 var parts = regex.source.match(
483 if (regex.ignoreCase && needToFoldCase) {
506 var regex = regexs[i];
507 if (regex.global || regex.multiline) { throw new Error('' + regex); }
723 var regex = patternParts[1];
724 var k = '' + regex;
[all …]
H A Dprettify.js336 var regex = regexs[i];
337 if (regex.ignoreCase) {
339 } else if (/[a-z]/i.test(regex.source.replace(
455 function allowAnywhereFoldCaseAndRenumberGroups(regex) { argument
459 var parts = regex.source.match(
531 if (regex.ignoreCase && needToFoldCase) {
554 var regex = regexs[i];
555 if (regex.global || regex.multiline) { throw new Error('' + regex); }
771 var regex = patternParts[1];
772 var k = '' + regex;
[all …]
/plugin/datapopup/
H A Dscript.js2 regex = new Array();
5 regex.push(new RegExp(typeArr[i] + '$'));
39 for(var i = 0 ; i < regex.length ; ++i) {
40 var match = href.replace(/\//g, ':').match(regex[i]);
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMentionExtension.php27 $isAValidPartialRegex = static function (string $regex): bool {
28 $regex = '/' . $regex . '/i';
30 return @\preg_match($regex, '') !== false;
59 isAValidPartialRegex(string $regex) global() argument

12345678910>>...16