Searched refs:PATTERN (Results 1 – 7 of 7) sorted by relevance
/plugin/sequencediagram/bower_components/lodash/ |
H A D | .travis.yml | 71 PATTERN[0]="|\s*while\s*\([^)]+\)\s*\{\s*iteratee\(index\);\s*\}|" 72 PATTERN[1]="|\bindex,\s*iterable\)\s*===\s*false\)[^}]+?(break;)|" 73 PATTERN[2]="|\bcase\s+(?:dataView|promise|set|map|weakMap)CtorString:.+|g" 74 PATTERN[3]="|\s*if\s*\(cache\.size\b[\s\S]+?\}|" 75 PATTERN[4]="|\s*if\s*\(\!lodashFunc\)\s*\{\s*return;\s*\}|" 76 PATTERN[5]="|\s*define\([\s\S]+?\);|" 77 PATTERN[6]="|\s*root\._\s*=\s*_;|" 81 for PTRN in ${PATTERN[@]}; do
|
/plugin/siteexport/inc/ |
H A D | functions.php | 305 public function getSpecialExportFileName($FILE, $PATTERN = null) { argument 312 if (empty($PATTERN) && empty($this->settings->pattern)) { 314 $PATTERN = md5(microtime(false)); 319 $this->settings['pattern'] = $PATTERN; 321 $PATTERN = $this->settings->pattern; 327 array_push($FA, $PATTERN); 335 public function getCacheFileNameForPattern($PATTERN = null) argument 337 if ($PATTERN == null) { 338 $PATTERN = $this->settings->pattern; 341 …return getCacheName($this->getSpecialExportFileName($this->settings->origZipFile, $PATTERN), '.' .…
|
/plugin/displayfile/ |
H A D | syntax.php | 29 const PATTERN = '<displayfile\s+[a-z0-9_\-]+?\s*.*?\s*\/>'; define in syntax_plugin_displayfile 41 $this->Lexer->addSpecialPattern(self::PATTERN, $mode, 'plugin_displayfile');
|
/plugin/combo/syntax/ |
H A D | frontmatter.php | 70 const PATTERN = self::START_TAG . '.*?' . self::END_TAG; define in syntax_plugin_combo_frontmatter 129 $this->Lexer->addSpecialPattern(self::PATTERN, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
|
/plugin/siteexport/action/ |
H A D | ajax.php | 565 $PATTERN = "/(" . implode('|', explode(' ', preg_quote($EXCLUDE, '/'))) . ")/i"; 568 "pattern" => $PATTERN, 570 "matches" => preg_match($PATTERN, $URL) ? 'match' : 'no match' 573 if ( preg_match($PATTERN, $URL) ) { return false; } 645 $PATTERN = '(href|src|action)="([^"]*)"'; 648 $PATTERN = '((?<!<a )href|src|action)="([^"]*)"'; 652 $DATA = preg_replace_callback("/$PATTERN/i", $CALLBACK, $DATA);
|
/plugin/html2pdf/html2pdf/html2ps/data/ |
H A D | LineBreak.txt | 7924 2800;AL # BRAILLE PATTERN BLANK 7925 2801;AL # BRAILLE PATTERN DOTS-1 7926 2802;AL # BRAILLE PATTERN DOTS-2 7927 2803;AL # BRAILLE PATTERN DOTS-12 7928 2804;AL # BRAILLE PATTERN DOTS-3 7932 2808;AL # BRAILLE PATTERN DOTS-4 7940 2810;AL # BRAILLE PATTERN DOTS-5 7956 2820;AL # BRAILLE PATTERN DOTS-6 7988 2840;AL # BRAILLE PATTERN DOTS-7 8052 2880;AL # BRAILLE PATTERN DOTS-8 [all …]
|
/plugin/combo/ComboStrap/ |
H A D | MetadataFrontmatterStore.php | 255 $pattern = syntax_plugin_combo_frontmatter::PATTERN;
|