Home
last modified time | relevance | path

Searched refs:pattern (Results 401 – 425 of 693) sorted by path

1...<<11121314151617181920>>...28

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/
H A DAbstractPatternSniff.php107 foreach ($patterns as $pattern) {
108 $parsedPattern = $this->_parse($pattern);
150 private function _getPatternTokenTypes($pattern) argument
153 foreach ($pattern as $pos => $patternInfo) {
177 private function _getListenerTokenPos($pattern) argument
280 $pattern = $patternInfo['pattern'];
440 $patternLen = count($pattern);
447 if ($pattern[$i]['type'] === 'token') {
794 private function _parse($pattern) argument
797 $length = strlen($pattern);
[all …]
H A DAbstractVariableSniff.php144 $pattern = '|(?<!\\\\)(?:\\\\{2})*\${?[a-zA-Z0-9_]+}?|';
145 if (preg_match($pattern, $tokens[$stackPtr]['content']) !== 0) {
186 $pattern = '|(?<!\\\\)(?:\\\\{2})*\${?[a-zA-Z0-9_]+}?|';
187 if (preg_match($pattern, $tokens[$stackPtr]['content']) !== 0) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DDeprecatedFunctionsSniff.php76 * @param string $pattern The pattern used for the match.
80 protected function addError($phpcsFile, $stackPtr, $function, $pattern=null) argument
H A DForbiddenFunctionsSniff.php170 $pattern = null;
174 $pattern = preg_replace(
187 $pattern = substr($pattern, 1, -2);
194 $this->addError($phpcsFile, $stackPtr, $tokens[$stackPtr]['content'], $pattern);
206 * @param string $pattern The pattern used for the match.
210 protected function addError($phpcsFile, $stackPtr, $function, $pattern=null) argument
222 if ($pattern === null) {
223 $pattern = strtolower($function);
226 if ($this->forbiddenFunctions[$pattern] !== null
227 && $this->forbiddenFunctions[$pattern] !== 'null'
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DForbiddenStylesSniff.php112 $pattern = null;
116 $pattern = preg_replace(
129 $pattern = substr($pattern, 1, -2);
136 $this->addError($phpcsFile, $stackPtr, $style, $pattern);
148 * @param string $pattern The pattern used for the match.
152 protected function addError($phpcsFile, $stackPtr, $style, $pattern=null) argument
164 if ($pattern === null) {
165 $pattern = $style;
168 if ($this->forbiddenStyles[$pattern] !== null) {
169 $data[] = $this->forbiddenStyles[$pattern];
[all …]
/plugin/icons/assets/material-design-icons/css/
H A Dmaterialdesignicons.min.css1pattern::before{content:"\FF5D"}.mdi-car-side::before{content:"\F7AA"}.mdi-car-sports::before{cont…
/plugin/icons/syntax/
H A Dbreeze.php20 protected $pattern = '{{breeze>.+?}}'; variable in syntax_plugin_icons_breeze
H A Dfa.php20 protected $pattern = '{{fa>.+?}}'; variable in syntax_plugin_icons_fa
H A Dfl.php20 protected $pattern = '{{fl>.+?}}'; variable in syntax_plugin_icons_fl
H A Dflag.php20 protected $pattern = '{{flag>.+?}}'; variable in syntax_plugin_icons_flag
H A Dfugue.php20 protected $pattern = '{{fugue>.+?}}'; variable in syntax_plugin_icons_fugue
H A Dglyphicon.php20 protected $pattern = '{{glyphicon>.+?}}'; variable in syntax_plugin_icons_glyphicon
H A Dicon.php18 protected $pattern = '{{icon>.+?}}'; variable in syntax_plugin_icons_icon
45 …$this->Lexer->addSpecialPattern($this->pattern, $mode, 'plugin_icons_'.$this->getPluginComponent()…
46 …$this->Lexer->addSpecialPattern(sprintf($this->linkPattern, $this->pattern), $mode, 'plugin_icons_…
72 if (isset($title) && preg_match('/'.$this->pattern.'/', $title)) {
H A Dmdi.php20 protected $pattern = '{{mdi>.+?}}'; variable in syntax_plugin_icons_mdi
H A Doxygen.php20 protected $pattern = '{{oxygen>.+?}}'; variable in syntax_plugin_icons_oxygen
H A Dra.php20 protected $pattern = '{{ra>.+?}}'; variable in syntax_plugin_icons_ra
H A Dsilk.php20 protected $pattern = '{{silk>.+?}}'; variable in syntax_plugin_icons_silk
H A Dtypcn.php20 protected $pattern = '{{typcn>.+?}}'; variable in syntax_plugin_icons_typcn
/plugin/imagecarousel/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
/plugin/imagepreview/
H A Dscript.js61 var pattern = /(\{\{)(.*?)\.(gif|jpg|jpeg|tiff|png)(.*?)(\}\})(.*?)/;
62 var containimg = pattern.test(seltext);
64 match= seltext.match(pattern);
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php794 protected function match($exp, $pattern, $value, $case_sensitivity) { argument
801 $pattern = strtolower($pattern);
807 return ($value === $pattern);
809 return ($value !== $pattern);
811 return preg_match('/^' . preg_quote($pattern, '/') . '/', $value);
815 return preg_match('/' . preg_quote($pattern, '/') . '/', $value);
824 return strpos($value, $pattern) === 0;
835 return in_array($pattern, explode(' ', trim($value)), true);
893 $pattern,
2208 protected function remove_noise($pattern, $remove_tag = false) { argument
[all …]
/plugin/inclform/
H A Dsyntax.php128 $pattern = "/(<\?php)(.*?)(\?>)/is";
/plugin/inlineedit/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
/plugin/inlinejs/syntax/
H A Dembedblock.php44 $this->pattern[1] = '<JS>(?=.*?</JS>)';
45 $this->pattern[4] = '</JS>';
H A Dembedcss.php43 $this->pattern[1] = '<CSS>(?=.*?</CSS>)';
44 $this->pattern[4] = '</CSS>';

1...<<11121314151617181920>>...28