Home
last modified time | relevance | path

Searched refs:matches (Results 1076 – 1100 of 1144) sorted by path

1...<<414243444546

/plugin/twcheckliste/theme_twCheckliste/
H A Dpackery.pkgd.min.js12 …rn!0;return!1}function o(t,n){return i(t),e(t,n)}var r,s=function(){if(t.matches)return"matches";i…
/plugin/txtconf/
H A Dconfig0.class.php129 $matches=array();
130 preg_match_all($pattern,$contents,$matches,PREG_SET_ORDER);
132 for ($i=0; $i<count($matches); $i++) {
136 $key = preg_replace('/.\]\[./',CM_KEYMARKER,$matches[$i][1]);
139 $value = preg_replace('/^(\'|")(.*)(?<!\\\\)\1$/','$2',$matches[$i][2]);
H A Dtxtconfig.class.php160 $matches=array();
161 preg_match_all($pattern,$contents,$matches,PREG_SET_ORDER);
163 for ($i=0; $i<count($matches); $i++) {
167 $key = preg_replace('/.\]\[./',CM_KEYMARKER,$matches[$i][1]);
170 $value = preg_replace('/^(\'|")(.*)(?<!\\\\)\1$/','$2',$matches[$i][2]);
/plugin/typography/helper/
H A Dparser.php135 if (preg_match($this->specifications[$name], $item[1], $matches)) {
/plugin/upgrade/vendor/composer/
H A DInstalledVersions.php125 return $provided->matches($constraint);
/plugin/userannotations/
H A Daction.php42 if(preg_match($pattern, $ID, $matches))
44 $annotated_page = str_replace($matches[0], '', $ID);
/plugin/vbsso/includes/
H A Dapi.php247 if (preg_match('/^[^\s]+\s@([^\s]+)/', $a, $matches)) {
248 $groups[urldecode($matches[1])] = $matches[1];
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/
H A Dsharedapi.php287 if (preg_match('/^\d+:(.*)/', $variable, $matches)) {
288 $variable = $matches[1];
/plugin/vcard/
H A Dsyntax.php337 if (!preg_match_all('/[^+\d\s]+/', $value, $matches, PREG_OFFSET_CAPTURE)) {
343 foreach ($matches[0] as $match) {
/plugin/vkeyboard/
H A Daction.php64 if($matches = preg_match('/(off)-(.*)/',($_REQUEST['vkb']))) {
66 setcookie ('VKB',$matches[1], $expire, DOKU_BASE);
H A Dvkeyboard.js.unc155 // - If the second slot of a sub-array matches one of the following
/plugin/webcode/syntax/
H A Dbasis.php229 $result = preg_match_all('/' . $attributePattern . '/i', $match, $matches);
233 foreach ($matches[1] as $key => $lang) {
235 $attributeValue = $matches[2][$key];
272 … $result = preg_match_all('/' . $codePattern . '/msi', $match, $matches, PREG_PATTERN_ORDER);
276 foreach ($matches[1] as $key => $lang) {
280 $code = ltrim($matches[3][$key]);
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js1192 var matches=regex.exec(jsonString);
1193 if(matches){jsonString=matches[1];
1197 matches=regex.exec(jsonString);
1198 if(matches){jsonString=matches[1]
3180 Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set) function
6956 if(Selector.matches(sel,arr).length==1){spec=getCSSRuleSpecificity(sel);
/plugin/webcomics/
H A Dsyntax.php28 if (preg_match('/(.*?)="(.*?)"/', $feed, $matches) == 1) {
29 if (!empty($matches[1]) && !empty($matches[2])) {
30 $key = strtoupper($matches[1]);
31 $this->comics[$key] = $matches[2];
66 preg_match('/src="(.*?)"/', (string) $xml->channel->item->description, $matches);
68 $src = $matches[1];
71 … if (preg_match('/title="(.*?)"/', (string) $xml->channel->item->description, $matches) == 1) {
72 $title = $matches[1];
74 … if (preg_match('/alt="(.*?)"/', (string) $xml->channel->item->description, $matches) == 1) {
75 $alt = $matches[1];
/plugin/webcomponent/syntax/
H A Dblockquote.php135 … if (preg_match('/<' . $citeTag . '>(.*)<\/' . $citeTag . '>/msSi', $match, $matches)) {
137 $parameters['cite']['content'] = $matches[1];
140 if (preg_match('/' . self::IMAGE_PATTERN . '/msSi', $match, $matches)) {
H A Drelated.php118 $result = preg_match_all('/' . $attributePattern . '/i', $match, $matches);
120 foreach ($matches[1] as $key => $parameterKey) {
121 $parameters[strtolower($parameterKey)] = $matches[2][$key];
/plugin/webcomponent/
H A Dwebcomponent.php44 $result = preg_match_all('/' . $attributePattern . '/i', $match, $matches);
46 foreach ($matches[1] as $key => $parameterKey) {
47 $parameters[strtolower($parameterKey)] = $matches[2][$key];
/plugin/webdav/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/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php641 if (!preg_match('/^bytes=([0-9]*)-([0-9]*)$/i', $range, $matches)) return null;
643 if ($matches[1] === '' && $matches[2] === '') return null;
646 $matches[1] !== '' ? $matches[1] : null,
647 $matches[2] !== '' ? $matches[2] : null,
1583 $matches = [];
1586 preg_match_all($regex, $header, $matches, PREG_SET_ORDER);
1590 foreach ($matches as $match) {
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php784 $matches = [];
788 … list($matches[]) = $this->server->getPropertiesForPath($lookupResult, $requestedProperties, 0);
792 return $matches;
/plugin/webdav/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/webdav/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/webdav/vendor/sabre/uri/lib/
H A Dfunctions.php190 function($matches) {
191 return rawurlencode($matches[0]);
281 $matches = [];
283 return [$matches[1], $matches[2]];
311 function($matches) {
329 $result['scheme'] = $matches[1];
363 if ($matches['host']) $result['host'] = $matches['host'];
364 if ($matches['port']) $result['port'] = (int)$matches['port'];
365 if (isset($matches['path'])) $result['path'] = $matches['path'];
366 if ($matches['user']) $result['user'] = $matches['user'];
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DComponent.php444 $matches = $this->select($name);
445 if (0 === count($matches)) {
448 $firstMatch = current($matches);
450 $firstMatch->setIterator(new ElementList(array_values($matches)));
465 $matches = $this->select($name);
467 return count($matches) > 0;
H A DDateTimeParser.php48 …$date = new DateTimeImmutable($matches[1].'-'.$matches[2].'-'.$matches[3].' '.$matches[4].':'.$mat…
78 $date = new DateTimeImmutable($matches[1].'-'.$matches[2].'-'.$matches[3], $tz);
120 … $matches[$part] = isset($matches[$part]) && $matches[$part] ? (int) $matches[$part] : 0;
126 $days = $matches['day'];
128 if ($matches['week']) {
136 if ($matches['minute'] || $matches['second'] || $matches['hour']) {
139 if ($matches['hour']) {
143 if ($matches['minute']) {
147 if ($matches['second']) {
176 if (isset($matches[$part]) && $matches[$part]) {
[all …]

1...<<414243444546