Home
last modified time | relevance | path

Searched refs:matches (Results 51 – 75 of 1144) sorted by last modified time

12345678910>>...46

/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js64583 this.matches = 0;
69031 s.last_lit = s.matches = 0;
69825 s.matches++;
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js7152 this.matches = 0; /* number of string matches in current block */
10638 s.last_lit = s.matches = 0;
11290 s.matches++;
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs3774 // matches <foo>...</foo> extracts content
3817 var matches/*:Array<string>*/ = data.match(vtregex(h.baseType))||[];
3819 if(matches.length != h.size) {
3820 if(opts.WTF) throw new Error("unexpected vector length " + matches.length + " != " + h.size);
3823 matches.forEach(function(x/*:string*/) {
/plugin/dev/
H A DLangProcessor.php223 if (!preg_match_all($regex, $line, $matches, PREG_SET_ORDER)) {
226 foreach ($matches as $match) {
/plugin/button/
H A Dsyntax.php195 if (preg_match('/\[\[{ *(?<image>[^}\|]*) *\|?(?<css>[^}]*)}(?<link>[^\]\|]*)\|?(?<title>[^\]]*)/', $match, $matches)) {
196 $data = $matches;
/plugin/bibtex4dw/syntax/
H A Dbibtex.php53 // $matches[0] is the parameters <bibtex [parameters]>
54 // $matches[1] is the text inside the block <bibtex [parameters]> </bibtex>
55 $matches = preg_split('/>/u', $match, 2);
56 $matches[0] = trim($matches[0]);
57 if ( trim($matches[0]) == '' ) {
58 $matches[0] = NULL;
60 return array($state, $matches[0], $matches[1], $pos);
91 $matches
[all...]
H A Dcite.php49 preg_match('/\{\[(.+?)\]\}/', $match, $matches);
50 return array($matches[1], $state, $pos);
/plugin/bibtex4dw/lib/
H A Dbibtexparser.php485 $matches = array();
486 preg_match('/^@\w+\{(.+)/', $entry, $matches);
487 if (count($matches) > 0) {
488 $m = explode('=', $matches[1], 2);
497 $matches = array();
498 preg_match('/^@(\w+)\{(.+),/', $entry, $matches);
499 if (count($matches) > 0) {
500 $entryType = $matches[1];
501 $key = $matches[2];
598 $matches
[all...]
/plugin/tag/
H A Dhelper.php501 if (preg_match_all('#".*?"#', $tags, $matches)) {
502 foreach ($matches[0] as $match) {
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php895 $matches,
900 $debug_object->debug_log(2, 'Matches Array: ', $matches);
906 foreach ($matches as $m) {
1168 $matches,
1172 foreach ($matches as $match) {
1689 $charset = $matches[1];
1716 $matches
1720 $charset = $matches[1];
2217 $matches,
2229 $this->noise[$key] = $matches[$i][$idx][0];
[all …]
H A Dmap.php103 $matches = array();
112 switch (count($matches)) {
114 $link = $matches[1];
115 $loc_id = $matches[2];
116 $text = $matches[3];
117 $coordinates = $matches[4];
121 $link = $matches[1];
123 $text = $matches[2];
124 $coordinates = $matches[3];
170 if (count($matches) == 2) {
[all …]
H A Dreference.php63 $matches = array();
68 if (preg_match("/\{{2}(?i)IMAPMLOC>\s*(.+?)\s*\|\s*(.+?)\s*\}{2}/", $match, $matches)) {
69 $loc_id = $matches[1];
70 $loc_title = $matches[2];
/plugin/recommend/helper/
H A Dassignment.php50 $matches = array_filter($assignments, function ($data) use ($hlp) {
54 $template = array_pop($matches);
/plugin/todo/syntax/
H A Dtodo.php420 * @param array $matches whole regex matches multidemensional array( array( 0 => '1st Match', 1 => '2nd Match', ... ), ... )
426 public function _searchpatternHandler($type, $renderer, $data, $matches, $params = array(), $page = null, $value = null) {
432 // $matches should hold an array with all <todo>matches</todo> or <todo #>matches</todo>
433 if(!is_array($matches)) {
436 //file_put_contents( dirname(__FILE__).'/debug.txt', print_r($matches,true), FILE_APPEND );
441 foreach($matches as $page => $allTodosPerPage) {
443 //entry 0 contains all whole matches
414 _searchpatternHandler($type, $renderer, $data, $matches, $params = array(), $page = null, $value = null) global() argument
[all...]
H A Dlist.php47 * Handle matches of the todolist syntax
246 $item['count'] = preg_match_all($opts['pattern'], $wikitext, $matches); //count how many times appears the pattern
248 $item['matches'] = $matches;
338 // contains 3 arrays: an array with complete matches and 2 arrays with subpatterns
339 foreach($page['matches'][1] as $todoindex => $todomatch) {
340 $todo = array_merge(array('todotitle' => trim($page['matches'][2][$todoindex]), 'todoindex' => $todoindex), $this->parseTodoArgs($todomatch), $data);
/plugin/bureaucracy/helper/
H A Dfielduser.php43 public function replacementValueCallback($matches) { argument
49 if (!isset($matches[2])) {
52 $attr = $matches[2];
57 return $matches[0];
66 if (isset($matches[3])) {
67 $delitmiter = $matches[3];
71 return $matches[0];
H A Dactionmail.php195 if(preg_match_all('#<code\b(.*?)>(.*?)</code>#is', $content, $matches)) {
196 foreach($matches[1] as $index => $codeoptions) {
199 $html = $matches[2][$index];
202 $text = $matches[2][$index];
H A Dfield.php241 public function replacementMultiValueCallback($matches) { argument
246 if (isset($matches['default']) && $matches['default'] != '') {
247 return $matches['default'];
249 return $matches[0];
253 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
H A Dfieldusers.php42 public function replacementValueCallback($matches) { argument
48 if (isset($matches[2]) && is_array($matches[2]) && count($matches[2]) == 2) {
49 return is_null($value) || $value === false ? $matches[0] : $value;
52 $attribute = isset($matches['attribute']) ? $matches['attribute'] : '';
54 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
66 return $matches[0];
/plugin/bureaucracy/
H A Dsyntax.php467 preg_match_all($pattern, $input, $matches);
468 $this->noreplace = $matches[1];
518 $input = preg_replace_callback($pattern, function ($matches) use ($callback) {
519 return call_user_func($callback, $matches[1]);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php228 if ($matcher->matches($object, $property->getName())) {
237 // If a filter matches, we stop processing this property
256 * Returns first filter that matches variable, `null` if no such filter found.
272 return $matcher->matches($var);
280 * Returns first element that matches predicate, `null` if no such element found.
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DSvg.php3039 preg_match_all('/(\.[^{]+)\s*\{\s*([^}]+)\s*}/m', $styleNode->nodeValue, $matches, PREG_SET_ORDER);
3040 foreach ($matches as $cssBlock) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php1175 // 0.35 has been recommended; 0.5 matches applications like MS Word
17320 $p1x = $x00 + $w00; // control point only matches p3 preceding
17322 $p2x = $x00 + $w00 - $bl; // control point only matches p4 preceding
17348 $p1x = $x00 + $w00 - $bl; // control points only matches p3 preceding
17351 $p2x = $x00 + $w00; // control point only matches p4 preceding
17384 $p1x = $x00 + $w00 - $d1 - $brbgBR_H; // control point only matches p3 preceding
17386 $p2x = $x00 + $w00 - $d1 - $brbgBR_H; // control point only matches p4 preceding
17413 $p1c2x = $p1x - ($d2 + $brbgBL_H) * $mag; // control points only matches p3 preceding
17416 $p2c2x = $p2x - ($d1 + $brbgBL_H) * $mag; // control point only matches p4 preceding
17446 $p1x = $x00; // control point only matches p
27048 tabs2spaces_callback($matches) global() argument
27054 date_callback($matches) global() argument
[all...]
H A DOtl.php3037 $matches = $rollover;
3040 $matches = $this->checkwordmatch($dict, $ptr);
3042 if (count($matches) == 1) {
3043 $matchpos = $matches[0];
3051 } elseif (empty($matches)) {
3057 } else { // Multiple matches
3059 for ($m = count($matches) - 1; $m >= 0; $m--) {
3060 //for ($m=0;$m<count($matches);$m++) {
3061 $firstmatch = $matches[$m];
3074 $this->OTLdata[$matches[coun
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/
H A DUtfString.php19 $str = preg_replace_callback('/\&\#(\d+)\;/m', function ($matches) use ($lo) {
20 return static::code2utf($matches[1], $lo ? 1 : 0);
22 $str = preg_replace_callback('/\&\#x([0-9a-fA-F]+)\;/m', function ($matches) use ($lo) {
23 return static::codeHex2utf($matches[1], $lo ? 1 : 0);

12345678910>>...46