Home
last modified time | relevance | path

Searched refs:pattern (Results 676 – 693 of 693) sorted by last modified time

1...<<2122232425262728

/plugin/userannotations/
H A Daction.php41 $pattern = '/^'.preg_quote($privatepath.':').'[^:]+\:/';
42 if(preg_match($pattern, $ID, $matches))
/plugin/hyphenation/phpHyphenation/
H A DphpHyphenation.class.php144 foreach ($patterns as $pattern) {
145 $new_patterns[preg_replace('/[0-9]/', '', $pattern)] = $pattern;
227 $pattern = $this->patterns[mb_substr($text_word, $position, $win)];
229 $pattern_length = mb_strlen($pattern);
232 $char = $pattern[$i];
H A Dhyphenation.php84 $pattern = $GLOBALS["patterns"][mb_substr($text_word, $position, $win)];
86 $pattern_length = mb_strlen($pattern);
89 $char = $pattern[$i];
/plugin/codehighlight/cp/engines/
H A Dopera.js142 var pattern = new RegExp(trigger+cc,'gi');
144 this.syntaxHighlight('snippets',pattern,content);
158 var pattern = new RegExp('\\'+trigger+cc);
160 …parent.setTimeout(function () { CodePress.syntaxHighlight('complete',pattern,content)},0); // wait…
H A Dmsie.js151 var pattern = new RegExp(trigger+cc,"gi");
152 this.syntaxHighlight('snippets',pattern,content);
165 var pattern = new RegExp('\\'+trigger+cc);
167 …setTimeout(function () { CodePress.syntaxHighlight('complete',pattern,content)},0); // wait for ch…
H A Dgecko.js142 var pattern = new RegExp(trigger+cc,'gi');
144 this.syntaxHighlight('snippets',pattern,content);
158 var pattern = new RegExp('\\'+trigger+cc);
160 …parent.setTimeout(function () { CodePress.syntaxHighlight('complete',pattern,content)},0); // wait…
/plugin/offline/
H A DCOPYING.txt54 pattern of such abuse occurs in the area of products for individuals to
/plugin/givemeyouremail/
H A Dsyntax.php160 $pattern = '/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/';
161 if(empty($email_adress) || !preg_match($pattern,$email_adress)){
/plugin/youtube/
H A Dsyntax.php17 var $pattern; variable in syntax_plugin_youtube
20 $this->pattern = '/\{\{(\s?)youtube>(small|large|link):([^} |]+)\|?(.*?)(\s?)\}\}/';
/plugin/flowplay2/flowplayer/
H A DLICENSE.txt60 pattern of such abuse occurs in the area of products for individuals to
/plugin/code3/src/
H A Dtz.js272 var pattern = '(?:' +
280 pattern += '|\\b' + preceder;
282 pattern += '|' + preceder.replace(/([^=<>:&])/g, '\\$1');
285 pattern += ')\\s*$'; // matches at end
286 return new RegExp(pattern);
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckstyle.js577 var pattern = this.GetFinalStyleValue() ;
579 if ( elementStyle.length > 0 && pattern.length == 0 )
582 pattern = '(^|;)\\s*(' +
583 pattern.replace( /\s*([^ ]+):.*?(;|$)/g, '$1|' ).replace( /\|$/, '' ) +
586 var regex = new RegExp( pattern, 'gi' ) ;
/plugin/dokukiwix/
H A DCOPYING54 pattern of such abuse occurs in the area of products for individuals to
/plugin/linebreak/
H A Daction.php53 $pattern = '/(?!< )(\n+|$)/';
61 preg_match_all($pattern, $event->data, $linebreaks, PREG_OFFSET_CAPTURE);
71 $event->data = $marker.preg_replace($pattern,' $1',$event->data);
/plugin/gcalendar/inc/
H A Dgcal_read.php107 foreach($match_category as $pattern) {
108 if(preg_match($pattern, $buffer, $subpattern)) {
117 foreach($match_event as $pattern) {
118 if(preg_match($pattern, $buffer, $subpattern)) {
228 $pattern = '([0-9]{1,2})\:([0-9]{2})\s*(am|pm|)';
229 $pattern = '#^'.$pattern; # string has to start with the pattern
232 if(preg_match($pattern,$text, $match)) {
254 $pattern = '#'.$conf['gCal_inline_Category_visible'].'#i';
255 if(preg_match($pattern,$text, $match)) {
260 $pattern = '#'.$conf['gCal_inline_Category_hidden'].'#i';
[all …]
/plugin/txtconf/
H A Dtxtconfig.class.php159 $pattern = '/\$'.$this->_name.'\[[\'"]([^=]+)[\'"]\] ?= ?(.*?);/';
161 preg_match_all($pattern,$contents,$matches,PREG_SET_ORDER);
H A Dconfig0.class.php128 $pattern = '/\$'.$this->_name.'\[[\'"]([^=]+)[\'"]\] ?= ?(.*?);/';
130 preg_match_all($pattern,$contents,$matches,PREG_SET_ORDER);
/plugin/bibtex/OSBib/format/
H A DREADME.txt120 $bibformat->patterns -- A preg pattern (e.g. "/matchThis|matchThat/i") that in conjunction with $bi…

1...<<2122232425262728