Home
last modified time | relevance | path

Searched refs:matches (Results 226 – 250 of 1144) sorted by relevance

12345678910>>...46

/plugin/codedoc/
H A Dspecials.php42 if(preg_match('/\s*xref:(.*)/i',$match,$matches)) {
43 $renderer->doc .= '<a name="' . trim(strtolower($matches[1])) . '">&nbsp;</a>';
47 if(preg_match('/\s*clean:(.*)/i',$match,$matches)) {
48 $data = $matches[1];
/plugin/bez/syntax/
H A Dnav.php61 $matches = array();
62 preg_match('/bez:([a-z_]*)/i', $INFO['id'], $matches);
64 if (isset($matches[1])) {
65 $cur_action = $matches[1];
/plugin/pagemove/
H A Dadmin.php556 $matches = array();
581 $matches = array();
654 $matches = array();
661 $replacementNamespace = '.:'.$matches[1].':';
669 $matches = array();
680 if ( preg_match('#^'.$bns.':(.*)$#', $opts['ns'], $matches) ) {
774 preg_match_all('#\[\[(.+?)\]\]#si', $text, $matches, PREG_SET_ORDER);
775 foreach($matches as $match) {
814 preg_match_all('#{{(.[^>]+?)}}#si', $text, $matches, PREG_SET_ORDER);
815 foreach($matches as $match) {
[all …]
/plugin/preservefilenames/
H A Daction_anteater.php60 preg_match($filename_pat, $_POST['id'], $matches);
61 $filename_orig = $matches[1];
272 static function _replaceLinkURL_callback_a($matches) argument
274 list($atag, $attr_str, $linktext, $autofilled, $filename) = array_slice($matches, 0, 5);
280 if (isset($matches[5])) {
282 $filename = $matches[8];
283 $linktext = self::_replaceLinkURL_callback_img(array_slice($matches, 5, 4));
312 static function _replaceLinkURL_callback_img($matches) argument
314 list($imgtag, $imgtitle, $autofilled, $filename) = $matches;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php325 if (preg_match('/^(ldaps?)\:\/\/\/(.*)$/', $url, $matches) === 0) {
332 if (strlen($matches[2]) > 0 && $matches[2][0] === '?') {
333 $query = substr($matches[2], 1);
335 } elseif (strpos($matches[2], '?') !== false) {
336 $parts = explode('?', $matches[2], 2);
341 $path = $matches[2];
345 'scheme' => $matches[1],
/plugin/mdpage/vendor/cebe/markdown/inline/
H A DUrlLinkTrait.php33 if (!in_array('parseLink', $this->context) && preg_match($pattern, $markdown, $matches)) {
35 ['autoUrl', $matches[0]],
36 strlen($matches[0])
/plugin/markdowku/
H A Dreferences.php35 $matches);
36 $key = 'markdowku_references_'.preg_replace("/ /", ".", $matches[1]);
37 $renderer->meta[$key] = $matches[2];
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMessage.php142 …("/(?:^HTTP\/|^[A-Z]+ \S+ HTTP\/)(\d+(?:\.\d+)?)/i", $startLine, $matches) && $matches[1] === '1.0…
208 $matches = [];
209 if (!preg_match('/^[\S]+\s+([a-zA-Z]+:\/\/|\/).*/', $data['start-line'], $matches)) {
217 $matches[1] === '/' ? self::parseRequestUri($parts[1], $data['headers']) : $parts[1],
223 return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]);
/plugin/amcharts/
H A Dsyntax.php53 …preg_match_all('/(\S+)=["\']?((?:.(?!["\']?\s+(?:\S+)=|[>"\']))+.)["\']?/', $opts, $matches, PREG_…
59 foreach($matches as $m) {
65 function($matches){
66 $m = $matches[0];
/plugin/subjectindex/plugins/
H A DEntryTag.php23 $matches = array();
24 $hits = preg_match_all($this->_regex, $text, $matches, PREG_SET_ORDER);
26 foreach ($matches as $match) {
H A DEntryDefault.php43 $matches = array();
44 $hits = preg_match_all($this->_regex, $text, $matches, PREG_SET_ORDER);
46 foreach ($matches as $match) {
/plugin/floatdiv/syntax/
H A Dfloathead.php42 preg_match('/^~(\$+) (.+)? (\$+)~/',$match,$matches);
43 return array(strlen($matches[1]),$matches[2]);
/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/c3chart/
H A Dsyntax.php53 preg_match_all('/(\\w+)\s*=\\s*([^"\'\\s>]*)/', $opts, $matches, PREG_SET_ORDER);
59 foreach($matches as $m) {
65 function($matches){
66 $m = $matches[0];
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php172 $isRef = $matches['ref'];
174 $values['value'] = $matches['value'];
297 $isRef = $matches['ref'];
299 $values['value'] = $matches['value'];
663 $modifiers = isset($matches['modifiers']) ? $matches['modifiers'] : '';
667 if ('' !== $matches['tag'] && '!' !== $matches['tag']) {
668 if ('!!binary' === $matches['tag']) {
672 return new TaggedValue(substr($matches['tag'], 1), $data);
777 self::preg_match($pattern, $this->currentLine, $matches)
785 $blockLines[] = $matches[1];
[all …]
/plugin/command/inc/
H A Dembedding.php198 $matches = array();
199 if(!preg_match(COMMANDPLUGIN_CALL_PREG, $callString, $matches))
202 $cmdName = strtolower($matches[1]);
203 if(sizeof($matches) == 2)
206 $rawParams = explode('&', substr($matches[2], 1));
/plugin/html2pdf/html2pdf/
H A Daction.php66 while ( preg_match($pattern,$html,$matches ) )
68 $link = preg_replace('/:/','/',$matches[1]);
70 $width = $matches[2];
71 $height = $matches[3];
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.brush.ruby.js5matches:Syntax.extractMatches({klass:'function'})};Syntax.lib.rubyStyleSymbol={pattern:/([:]?):\w+… method in Syntax.lib.rubyStyleSymbol
H A Djquery.syntax.brush.apache.js5matches:Syntax.extractMatches({klass:'tag',allow:['attribute','tag-name','string']},{klass:'tag-na…
/plugin/fckg/fckeditor/
H A Daspell.php92 if(preg_match('/^([a-z]+)\-?.*$/', $dict, $matches)) {
93 if($matches[1] != $next) {
95 $next=$matches[1];
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/
H A DCSSLintSniff.php79 $matches = array();
83 $matches
90 $line = (int) $matches[2];
/plugin/fksnewsfeed/syntax/
H A Dstream.php18 preg_match_all('/([a-z]+)="([^".]*)"/', substr($match, 14, -2), $matches);
20 foreach ($matches[1] as $index => $match) {
21 $parameters[$match] = $matches[2][$index];
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshCore.js2234 if (matches == null)
2292 matches = [],
2304 matches = matches.concat(resultMatch);
2308 return matches;
2510 matches = [],
2522 matches = matches.concat(result);
2530 matches = matches.concat(result);
2538 matches = matches.concat(result);
2544 return matches;
2633 return matches;
[all …]
/plugin/findologicxmlexport/vendor/hoa/ustring/Test/Unit/
H A DUstring.php243 ->when($result = $string->match($pattern, $matches))
247 ->array($matches)
260 ->when($result = $string->match($pattern, $matches, 0, 0))
264 ->array($matches)
271 ->array($matches)
278 ->array($matches)
293 ->array($matches)
313 ->array($matches)
333 ->array($matches)
359 ->array($matches)
[all …]
/plugin/odt/ODT/
H A DODTUtility.php34 $matches = array();
627 preg_match ('/href="[^"]*"/', $search, $matches);
628 $url = substr ($matches[0], 5);
640 * @param array $matches
643 protected static function _preserveSpace($matches){ argument
644 $spaces = $matches[1];
911 $class_attr = substr($matches [0], 7);
920 $class_attr = substr($matches [0], 7);
945 $olStartValue = substr($matches [0], 7);
954 $class_attr = substr($matches [0], 7);
[all …]

12345678910>>...46