Home
last modified time | relevance | path

Searched refs:regex (Results 51 – 75 of 380) sorted by last modified time

12345678910>>...16

/plugin/sectiontoggle/
H A Dscript.js47 var regex;
49 regex = RegExp('\\b' + escapeRegExp(hash.toLowerCase()) + '\\b');
51 if(hash.toLowerCase() == SectionToggle.hash || regex.test(JSINFO['h_ini_open'])) {
55 regex = RegExp('^' +SectionToggle.hash,'i'); //bootstrap3
56 if(regex.test(hash)) {
/plugin/catlist/
H A Dsyntax.php121 // is regex negated ?
123 $data[substr($option,0,-1)][] = array('regex' => $found[3], 'neg' => true);
125 $data[$option][] = array('regex' => $found[3], 'neg' => false);
229 * ( array of array('regex'=>the_regex,'neg'=>false/true) ). The exclusion
236 foreach($arrayRegex as $regex) {
237 if (!is_array($regex)) // temporary, for transitioning to v2021-07-21
238 $regex = array('regex' => $regex, 'neg' => false);
239 $match = preg_match('/'.$regex['rege
[all...]
/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/davcal/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php302 $regex = "/
316 preg_match_all($regex, $line, $matches, PREG_SET_ORDER);
483 $regex = '# (?: (\\\\ (?: \\\\ | N | n | ; | , ) )';
485 $regex .= ' | (' . $delimiter . ')';
487 $regex .= ') #x';
489 $matches = preg_split($regex, $input, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
598 $regex = '/^
605 preg_match($regex, $this->rawLine, $matches);
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js667 function addRegexToken (token, regex, strictRegex) { argument
668 regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {
669 return (isStrict && strictRegex) ? strictRegex : regex;
995 var i, mom, regex;
1018 regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');
1019 this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');
1462 var i, mom, regex;
1485regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMi…
1486 this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php1509 …$regex = '/(?:\<(?P<uri>.*?)\>\s)?\((?P<not>Not\s)?(?:\<(?P<token>[^\>]*)\>)?(?:\s?)(?:\[(?P<etag>…
1510 preg_match_all($regex, $header, $matches, PREG_SET_ORDER);
/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DText.php120 $regex = '# (?<!\\\\) ; #x';
121 $matches = preg_split($regex, $val);
H A DUri.php60 $regex = '# (?: (\\\\ (?: \\\\ | : ) ) ) #x';
61 $matches = preg_split($regex, $val, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
/plugin/davcal/datetimepicker-2.4.5/
H A Djquery.datetimepicker.js2072regex="";var special=false;var ch="";for(var i=0;i<format.length;++i){ch=format.charAt(i);if(!spec…
/plugin/davcal/vendor/sabre/http/lib/
H A Dfunctions.php229 $regex = <<<REGEX
245 if (!preg_match($regex, $value, $matches)) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
H A DRegexMatcher.php27 public $regex; variable in Google\\Service\\TrafficDirectorService\\RegexMatcher
46 public function setRegex($regex) argument
48 $this->regex = $regex;
55 return $this->regex;
H A DStringMatcher.php37 public $regex; variable in Google\\Service\\TrafficDirectorService\\StringMatcher
90 public function setRegex($regex) argument
92 $this->regex = $regex;
99 return $this->regex;
/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;
H A DGooglePrivacyDlpV2CustomInfoType.php117 public function setRegex(GooglePrivacyDlpV2Regex $regex) argument
119 $this->regex = $regex;
126 return $this->regex;
/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/authgooglesheets/vendor/psr/log/Psr/Log/Test/
H A DTestLogger.php109 public function hasRecordThatMatches($regex, $level) argument
111 return $this->hasRecordThatPasses(function ($rec) use ($regex) {
112 return preg_match($regex, $rec['message']) > 0;
/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/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DTestHandler.php171 public function hasRecordThatMatches(string $regex, $level): bool argument
173 return $this->hasRecordThatPasses(function (array $rec) use ($regex): bool {
174 return preg_match($regex, $rec['message']) > 0;
/plugin/tablelayout/
H A Dyarn.lock40 ansi-regex@^2.0.0:
44 ansi-regex@^3.0.0:
788 filename-regex@^2.0.0:
1130 ansi-regex "^2.0.0"
1596 filename-regex "^2.0.0"
1603 regex-cache "^0.4.2"
2037 regex-cache@^0.4.2:
2191 shebang-regex "^1.0.0"
2193 shebang-regex@^1.0.0:
2294 ansi-regex "^2.0.0"
[all …]
/plugin/xtern/
H A Daction.php55 $regex = "#^($skip)$#";
56 if(preg_match($regex,$ID)) {
/plugin/xcom/
H A Dscript.js352 var regex;
389 regex = RegExp('^\s*\\d\\d\\d\\d-\\d\\d-\\d\\d\s*$');
391 if(!regex.test(opt)) {
504 var regex = RegExp('(wiki|plugin|dokuwiki|xcom)\.');
505 if(!optstring.match(regex)) {
H A Dremote.php88 $regex='';
96 $regex = implode('|',$mask);
99 $regex = $mask[0];
101 else $regex = $mask;
102 $regex = "($regex)\b";
105 $result =$this->find_all_files($namespace,$regex);
107 $regex = '#' . preg_quote($rootns) .'#';
110 $result[$i] = preg_replace($regex,"",$result[$i]);
124 function find_all_files($dir,$regex="") argument
131 if($regex) if(preg_match('#'. $regex .'#',"$dir/$value")) {continue;}
[all …]
/plugin/xcom/scripts/
H A DsafeFN_class.js64 var regex = new RegExp('(?=[' + this.pre_indicator + '\\' + this.post_indicator + '])');
65 var split_array = safe.split(regex);
107 var regex = new RegExp(String.fromCharCode(codepoint));
108 var match = plain_str.match(regex);
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
H A DDigestMD5Encoder.php322 protected function parseRegex(string $regex, string $errorMessage) argument
324 if (!preg_match($regex, substr($this->binary, $this->pos), $matches)) {

12345678910>>...16