Home
last modified time | relevance | path

Searched refs:matched (Results 101 – 123 of 123) sorted by last modified time

12345

/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
H A DIterator.php145 $matched = FALSE;
151 $matched = TRUE;
156 return $matched;
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst261 The following filters will be matched by the above defined dynamic filter:
/plugin/ckgdoku/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js.unc160 … return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
/plugin/callflow/
H A Dscript.js172 if(matched = aCommands[i].match(/^\)/))//note stop
185 … aParsedCommands[curCommand] = [matched[1], matched[2], matched[3], matched[4], "double-arrow", i];
192 aParsedCommands[curCommand] = [matched[1], matched[2], matched[3], matched[4], "arrow", i];
199 aParsedCommands[curCommand] = [matched[2], matched[1], matched[3], matched[4], "arrow", i];
218 actor2 = (matched[2] != '')?matched[2] : matched[1];
233 aParsedCommands[curCommand] = [0, 0, matched[1], "break", i];
237 else if(matched = aCommands[i].match(/title:(.+)/)) //title
239 title = matched[1];
268 else if(matched = aCommands[i].match(/^order:(.+)/)) //order
270 aParsedCommands[curCommand] = [matched[1], matched[1], "", "", "", i];
[all …]
/plugin/condition/
H A Dbase_tester.php.orig.php202 $matched = false;
210 $matched = true;
214 $matched = true;
218 $matched = true;
222 $matched = true;
228 $matched = true;
232 $matched = true;
238 $matched = true;
247 $matched = true;
258 $matched = true;
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DShorthandSizeSniff.php114 $matched = '';
116 $matched .= $value[0];
119 if ($content !== trim($matched)) {
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1matched value, else `-1`.\n\t */\n\t function baseIndexOf(array, value, fromIndex) {\n\t if …
/plugin/authorlist/
H A Dsyntax.php71 * @param $pos Integer The character position of the matched text.
/plugin/datatemplate/syntax/
H A Dlist.php340 $matched = True;
369 $matched = $matched && $colmatch;
371 $matched = $matched || $colmatch;
374 if($matched) $out[] = $dr;
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DAttr.IDBlacklistRegexp.txt
/plugin/scrape/
H A DphpQuery-onefile.php
/plugin/subjectindex/inc/
H A Dmatcher.php23 $matched = preg_match('/Entry(.+?)\.php/', $file, $match);
24 if ($matched) {
40 $matched = false;
44 $matched = true;
49 return $matched;
/plugin/subjectindex/syntax/
H A Dindex.php180 … $matched = preg_match('/(^\d+\.)?(.).+/', $entry, $matches); // check for ordered entries 1st
181 if ($matched > 0) {
280 $matched = preg_match('/^\d+\.(.+)/', $cur_node, $matches);
281 if ($matched > 0) {
/plugin/subjectindex/plugins/
H A DEntryVerse.php32 $matched = false;
60 $matched = true;
63 return $matched;
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.parse.properties.php54 $matched = false;
59 $matched = true;
65 $matched = true;
67 } while ($matched);
/plugin/projects/plugins/file/
H A Dplot_dependency.php139 $matched = preg_match_all(
H A Dlatex_dependency.php44 $matched = preg_match_all($pattern, $content, $matches);
45 if ($matched == 0) return NULL;
/plugin/editsections2/
H A Dscript.js61 var matched,
64 if (!range || !(matched = /^(\d+)-(\d*)$/.exec(range.value))) {
67 ret = Number(matched[1]);
68 } else if (matched[2].length) {
69 ret = Number(matched[2]);
/plugin/preservefilenames/
H A Dscript.js113 var matched = id.match(/^(.*?:)[^:]+$/);
114 if (!matched) return id;
115 var namespace = matched[1];
/plugin/jquery/
H A Djquery-1.4.2.js3925 var matched = [], cur = elem[dir];
3928 matched.push( cur );
3932 return matched;
/plugin/jmol2/jmol/
H A DCHANGES.txt5481 # These can be mixed and matched to good effect. Certain relatively
/plugin/prolog/
H A Dprolog_tag.php70 $found = preg_match_all($this->attributePattern, $prologTag, $matched);
72 foreach($matched[1] as $i => $attrName) {
74 $attrValue = $matched[2][$i];
/plugin/textile2/
H A DclassTextile.php352 $matched = $in;
363 if (preg_match("/\{([^}]*)\}/", $matched, $sty)) {
365 $matched = str_replace($sty[0], '', $matched);
368 if (preg_match("/\[([^]]+)\]/U", $matched, $lng)) {
370 $matched = str_replace($lng[0], '', $matched);
373 if (preg_match("/\(([^()]+)\)/U", $matched, $cls)) {
375 $matched = str_replace($cls[0], '', $matched);
378 if (preg_match("/([(]+)/", $matched, $pl)) {
380 $matched = str_replace($pl[0], '', $matched);
383 if (preg_match("/([)]+)/", $matched, $pr)) {
[all …]

12345