Home
last modified time | relevance | path

Searched refs:match (Results 651 – 675 of 2354) sorted by relevance

1...<<21222324252627282930>>...95

/plugin/fksnewsfeed/syntax/
H A Dfeed.php39 public function handle($match, $state, $pos, Doku_Handler $handler): array { argument
40 preg_match_all('/([a-z-_]+)="([^".]*)"/', substr($match, 12, -2), $matches);
42 foreach ($matches[1] as $index => $match) {
43 $parameters[$match] = $matches[2][$index];
/plugin/outliner/
H A Dscript.js50 var match = node.className.match(/outl_\w+/);
51 if (match) {
52 return match[0];
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DOption.php74 preg_match(self::MATCH_RANGE, $this->option, $match);
76 return $match[2] ?? null;
90 preg_match(self::MATCH_RANGE, $this->option, $match);
92 return $match[1] ?? null;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DFirewallPolicyRule.php159 public function setMatch(FirewallPolicyRuleMatcher $match) argument
161 $this->match = $match;
168 return $this->match;
/plugin/wrap/syntax/
H A Dspan.php37 * Handle the match
39 function handle($match, $state, $pos, Doku_Handler $handler){ argument
43 $data = strtolower(trim(substr($match,strpos($match,' '),-1)," \t\n/"));
47 $handler->addCall('cdata', array($match), $pos);
/plugin/combo/syntax/
H A Dfooter.php115 * @param string $match
123 function handle($match, $state, $pos, Doku_Handler $handler) argument
130 $tagAttributes = PluginUtility::getTagAttributes($match);
137 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
/plugin/slidesharewp/syntax/
H A Dslidesharewp.php48 * @param string $match The match of the syntax
54 public function handle($match, $state, $pos, Doku_Handler &$handler){ argument
55 $pm = preg_match_all('/\[slideshare id=(.+?)&doc=(.+?)\]/', $match, $result);
/plugin/linkpagechild/
H A Dsyntax.php55 * @param string $match The match of the syntax
62 public function handle($match, $state, $pos, Doku_Handler $handler) argument
66 preg_match('/(\[\[|\{\{)( ?)::(.*)/', $match, $out);
/plugin/blogtng/syntax/
H A Dcommentreply.php40 * @param string $match The text matched by the patterns
46 function handle($match, $state, $pos, Doku_Handler $handler) { argument
47 $cid = substr($match, 2, -1);
/plugin/struct/syntax/
H A Dglobal.php34 * @param string $match The match of the syntax
40 public function handle($match, $state, $pos, Doku_Handler $handler)
43 $config = parent::handle($match, $state, $pos, $handler);
39 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/codemirror/dist/modes/
H A Dyaml.min.js.map1match","literal","indentation","keyCol","sol","pair","pairStart","inlinePairs","inlineList","next"…
H A Dmathematica.min.js.map1match","end","escaped","prev","startState","token","eatSpace","blockCommentStart","blockCommentEnd…
/plugin/eventum/
H A Dsyntax.php60 function handle($match, $state, $pos, Doku_Handler $handler) { argument
61 $raw = $match = substr($match, 8, -2);
63 list($match, $title) = explode('|', $match, 2);
65 list($id, $attrs) = explode('&', $match, 2);
/plugin/filterrss/
H A Dsyntax.php32 function handle($match, $state, $pos, Doku_Handler $handler) { argument
35 $match = substr($match, 0, -1);
37 $match = substr($match, 10);
42 $query = preg_split('/order by/i', $match);
/plugin/hcalendar/syntax/
H A Dhcal2.php71 function handle($match, $state, $pos, &$handler){ argument
75 …list($str_params, $background) = preg_split("/<\//u", substr($match, $this->matchLength()+1, -1), …
78 case DOKU_LEXER_UNMATCHED : return array($state, $match);
87 function render($mode, & $renderer, $match) { argument
91 list($state, $data) = $match;
213 list($match,$key,$val) = $kvpair;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DBrowserConsoleHandler.php204 foreach (array_reverse($matches) as $match) {
206 $args[] = static::quote(static::handleCustomStyles($match[2][0], $match[1][0]));
208 $pos = $match[0][1];
209 …= Utils::substr($format, 0, $pos) . '%c' . $match[1][0] . '%c' . Utils::substr($format, $pos + str…
/plugin/box/
H A Dsyntax.php80 public function handle($match, $state, $pos, Doku_Handler $handler) argument
85 $data = $this->boxstyle(trim(substr($match, 4, -1)));
86 if (substr($match, -1) == '|') {
98 return array('data', $match);
102 $handler->_addCall('cdata', array($match), $pos);
106 $data = trim(substr($match, 5, -1));
/plugin/yalist/
H A Dsyntax.php59 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
64 $frame = $this->interpretMatch($match);
99 if(substr($match, -2) == '..') {
102 $para_depth = count(explode(' ', str_replace("\t", ' ', $match)));
134 $output = $match;
138 $curr_frame = $this->interpretMatch($match);
209 $output = $match;
215 private function interpretMatch($match) { argument
222 $tag = $tag_table[substr($match, -1)];
224 'depth' => count(explode(' ', str_replace("\t", ' ', $match))),
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php391 private function match($token) function in Doctrine\\Common\\Annotations\\DocParser
684 $this->match(DocLexer::T_AT);
884 $this->match(DocLexer::T_COMMA);
1051 $this->match(DocLexer::T_STRING);
1059 $this->match(DocLexer::T_FLOAT);
1063 $this->match(DocLexer::T_TRUE);
1067 $this->match(DocLexer::T_FALSE);
1071 $this->match(DocLexer::T_NULL);
1087 $this->match(DocLexer::T_IDENTIFIER);
1090 $this->match(DocLexer::T_EQUALS);
[all …]
/plugin/htmlsafe/
H A Dsyntax.php30 function handle($match, $state, $pos, &$handler){ argument
31 return array( substr($match,1,4), substr($match,6,-7) );
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/
H A Dlanguage.js36 if(!err_str.match(/^FileBrowserError_/)) {
40 if(err_str.match(/;;/)) {
48 if(err_str.match(/^FileBrowserError_\w+$/)) {
/plugin/complex_lists/list_xrefs/
H A Dsyntax.php51 function handle($match, $state, $pos, &$handler){ argument
54 $str = trim($match, '#');
66 return array($state, $match);
/plugin/today/
H A Dsyntax.php52 * @param string $match The match of the syntax
59 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
63 $namespace = trim(substr($match, strlen('{today'), -1));
/plugin/flowcharts/
H A Dsyntax.php44 function handle($match, $state, $pos, Doku_Handler $handler){ argument
50 return array($state, $match);
65 list($state, $match) = $indata;
74 $instructions = $this->p_get_instructions($match);
/plugin/autotooltip/
H A Dsyntax.php54 * @param string $match - The match from addEntryPattern.
60 function handle($match, $state, $pos, Doku_Handler $handler) {
64 preg_match('/<autott\s*([^>]+?)\s*>/', $match, $classes);
65 preg_match('/<autott[^>]*>\s*([\s\S]+)\s*<\/autott>/', $match, $inner);
61 handle($match, $state, $pos, Doku_Handler $handler) global() argument

1...<<21222324252627282930>>...95