Home
last modified time | relevance | path

Searched refs:matches (Results 251 – 275 of 1144) sorted by last modified time

1...<<11121314151617181920>>...46

/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php316 preg_match_all($regex, $line, $matches, PREG_SET_ORDER);
333 foreach($matches as $match) {
489 $matches = preg_split($regex, $input, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
494 foreach($matches as $match) {
565 function($matches) {
566 switch($matches[2]) {
605 preg_match($regex, $this->rawLine, $matches);
607 $value = $matches[1];
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js2814 var matches = (string || '').match(matcher);
2816 if (matches === null) {
2820 var chunk = matches[matches.length - 1] || [];
H A Dfullcalendar.less292 /* matches the space above the events */ }
/plugin/davcal/vendor/sabre/xml/
H A DCHANGELOG.md89 `xmlDeserialize`. This is so that it matches PHP's `JsonSerializable`
95 anyone, unless you are doing exact string matches on class names.
/plugin/davcal/vendor/sabre/dav/lib/DAV/PartialUpdate/
H A DPlugin.php204 …ch('/^(append)|(?:bytes=([0-9]+)-([0-9]*))|(?:bytes=(-[0-9]+))$/i', $range, $matches)) return null;
206 if ($matches[1] === 'append') {
208 } elseif (strlen($matches[2]) > 0) {
209 return [self::RANGE_START, $matches[2], $matches[3] ?: null];
211 return [self::RANGE_END, $matches[4]];
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php608 if (!preg_match('/^bytes=([0-9]*)-([0-9]*)$/i', $range, $matches)) return null;
610 if ($matches[1] === '' && $matches[2] === '') return null;
613 $matches[1] !== '' ? $matches[1] : null,
614 $matches[2] !== '' ? $matches[2] : null,
1507 $matches = [];
1510 preg_match_all($regex, $header, $matches, PREG_SET_ORDER);
1514 foreach ($matches as $match) {
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php654 $matches = [];
658 … list($matches[]) = $this->server->getPropertiesForPath($lookupResult, $requestedProperties, 0);
662 return $matches;
/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DText.php121 $matches = preg_split($regex, $val);
122 $this->setValue($matches);
H A DUri.php61 $matches = preg_split($regex, $val, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
63 foreach($matches as $match) {
/plugin/davcal/vendor/sabre/uri/lib/
H A Dfunctions.php252 $matches = [];
253 if(preg_match('/^(?:(?:(.*)(?:\/+))?([^\/]+))(?:\/?)$/u', $path, $matches)) {
254 return [$matches[1], $matches[2]];
/plugin/davcal/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
177 return new \DateTimeZone('Etc/GMT' . $matches[1] . ltrim(substr($matches[2],0,2),'0'));
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DDigest.php220 preg_match_all('@(\w+)=(?:(?:")([^"]+)"|([^\s,$]+))@', $digest, $matches, PREG_SET_ORDER);
222 foreach ($matches as $m) {
/plugin/davcal/vendor/sabre/http/lib/
H A Dfunctions.php245 if (!preg_match($regex, $value, $matches)) {
251 switch ($matches['name']) {
268 if (isset($matches['value'])) {
269 $value = trim($matches['value'], '"');
273 $output[strtolower($matches['name'])] = empty($value) ? true : $value;
/plugin/davcal/vendor/sabre/xml/lib/
H A DService.php181 if (!preg_match('/^{([^}]*)}(.*)$/', $str, $matches)) {
186 $matches[1],
187 $matches[2]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/
H A DMock.php72 $matches = [];
92 $matches[] = $principal['uri'];
95 return $matches;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DGitProcessor.php68 if ($branches && preg_match('{^\* (.+?)\s+([a-f0-9]{40})(?:\s|$)}m', $branches, $matches)) {
70 'branch' => $matches[1],
71 'commit' => $matches[2],
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php89 case preg_match("#^AES-(128|192|256)-$modes$#", $algo, $matches):
90 $cipher = new AES(self::getEncryptionMode($matches[2]));
91 $cipher->setKeyLength($matches[1]);
93 case preg_match("#^DES-EDE3-$modes$#", $algo, $matches):
94 return new TripleDES(self::getEncryptionMode($matches[1]));
95 case preg_match("#^DES-$modes$#", $algo, $matches):
96 return new DES(self::getEncryptionMode($matches[1]));
150 if (preg_match('#DEK-Info: (.+),(.+)#', $key, $matches)) {
151 $iv = Hex::decode(trim($matches[2]));
158 $crypto = self::getEncryptionObject($matches[1]);
H A DPKCS8.php149 $algo = preg_match('#^pbeWith(?:MD2|MD5|SHA1|SHA)And(.*?)-CBC$#', $algo, $matches) ?
150 $matches[1] :
199 if (preg_match('#^pbeWith(MD2|MD5|SHA1|SHA)And.*?-CBC$#', $algo, $matches)) {
200 return $matches[1] == 'SHA' ? 'sha1' : $matches[1];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php319 preg_match("#(.)(.{{$order}})(.{{$order}})#s", $str, $matches);
320 list(, $w, $x, $y) = $matches;
H A DPKCS1.php71 preg_match('#-*BEGIN EC PRIVATE KEY-*[^-]*-*END EC PRIVATE KEY-*#s', $key, $matches);
72 $decoded = parent::load($matches[0], $password);
87 preg_match('#-*BEGIN EC PARAMETERS-*[^-]*-*END EC PARAMETERS-*#s', $key, $matches);
88 $decoded = parent::load($matches[0], '');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3MatchIntentResponse.php61 public function setMatches($matches) argument
63 $this->matches = $matches;
70 return $this->matches;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DHeader.php20 $params = $matches = [];
25 if (preg_match_all('/<[^>]+>|[^=]+/', $kvp, $matches)) {
26 $m = $matches[0];
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DGelfMessageFormatter.php152 if (preg_match("/^(.+):([0-9]+)$/", $context['exception']['file'], $matches)) {
153 $message->setFile($matches[1]);
154 $message->setLine($matches[2]);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Safebrowsing/
H A DGoogleSecuritySafebrowsingV4FindFullHashesResponse.php37 public function setMatches($matches) argument
39 $this->matches = $matches;
46 return $this->matches;
/plugin/authgooglesheets/vendor/composer/
H A DInstalledVersions.php286 return $provided->matches($constraint);

1...<<11121314151617181920>>...46