Home
last modified time | relevance | path

Searched refs:regex (Results 151 – 175 of 380) sorted by path

12345678910>>...16

/plugin/fblogin/lib/
H A Dbase_facebook.php959 $regex = '/Failed to connect to ([^:].*): Network is unreachable/';
960 if (preg_match($regex, curl_error($ch), $matches)) {
/plugin/fckg/
H A DChanges87 Fixed regex which removed precent-escaped backslashes in plugin syntax so that backslashes are
205 Fixed regex for recognizing indented code blocks.
/plugin/fckg/action/
H A Dedit.php2803 $regex = '~~NOCACHE~~|~~NOTOC~~';
2828 $regex .= "|$pattern";
2833 $regex = ltrim($regex, '|');
2858 return array('plugins'=> $regex, 'xcl'=> $regex_xcl);
/plugin/fckg/fckeditor/editor/dialog/fck_link/
H A Dfck_link.js1432 var regex = new RegExp(match_val,"i");
1435 if(!i.match(regex)) continue;
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js64 var regex = new RegExp('(?=[' + this.pre_indicator + '\\' + this.post_indicator + '])');
65 var split_array = safe.split(regex);
107 var regex = new RegExp(String.fromCharCode(codepoint));
108 var match = plain_str.match(regex);
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dconfig.php226 …$regex = $isWindows ? '\editor\filemanager\connectors' : 'lib/plugins/fckg/fckeditor/editor/filema…
230 …$regex = $isWindows ? 'lib\plugins\fckg\fckeditor\editor\filemanager\connectors' : 'lib/plugins/fc…
234 $regex = preg_quote($regex, '/');
236 $dir = preg_replace('/'. $regex .'.*/', $data_media, $dir);
H A Dutil.php39 $regex =
50 while (preg_match('/'.$regex.'/S', $string, $matches)) {
/plugin/fckg/fckeditor/editor/plugins/range/
H A Dfckplugin.js225 … var regex = new RegExp(/([^\xA0\ufffd\xb7]*)([\xA0\ufffd\xb7]+)([^\xA0\ufffd\xb7]*)/g);
228 while(result = regex.exec(str)) {
/plugin/fckg/scripts/
H A DsafeFN_class.js68 var regex = new RegExp('(?=[' + this.pre_indicator + '\\' + this.post_indicator + '])');
69 var split_array = safe.split(regex);
111 var regex = new RegExp(String.fromCharCode(codepoint));
112 var match = plain_str.match(regex);
/plugin/fckg/syntax/
H A Ddwplugin.php119 $regex = '/' . preg_quote($entry_match, '/') . '(.*?)' . preg_quote($_exit, '/') . '/';
121 if(preg_match( $regex, $match, $matches)) {
269 foreach ($regexes as $regex) {
270 $regex = "/($regex)/";
271 if(preg_match( $regex, $text, $matches) ) {
347 list($index, $regex) = each($pattern);
348 if(preg_match('/' . $regex . '/', $text)) {
/plugin/fetchmedia/
H A Dyarn.lock69 ansi-regex@^2.0.0:
73 ansi-regex@^3.0.0:
297 babel-helper-regex@^6.24.1:
1447 filename-regex@^2.0.0:
1642 ansi-regex "^2.0.0"
2109 regex-cache "^0.4.2"
2587 regex-cache@^0.4.2:
2754 shebang-regex "^1.0.0"
2756 shebang-regex@^1.0.0:
2874 ansi-regex "^2.0.0"
[all …]
/plugin/filelisting/
H A Dscript.js198 //escape regex
202 regex = new RegExp(globbing),
210 if (text.match(regex)) {
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
H A DAbstractLexer.php247 static $regex;
249 if ( ! isset($regex)) {
250 $regex = sprintf(
259 $matches = preg_split($regex, $input, -1, $flags);
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLexer.php124 foreach ($tokens as $fullLexeme => $regex) {
126 $_tokens[$fullLexeme] = [$regex, null];
136 $_tokens[$lexeme] = [$regex, $namespace];
195 list($regex, $nextState) = $bucket;
201 $out = $this->matchLexeme($lexeme, $regex, $offset);
268 * @param string $regex Regular expression describing the lexeme.
273 protected function matchLexeme($lexeme, $regex, $offset) argument
275 $_regex = str_replace('#', '\#', $regex);
293 [$lexeme, $regex]
H A DParser.php335 foreach ($this->_tokens[$namespace] as $_name => $regex) {
347 $zzeRule->setRepresentation($regex);
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DToken.php172 * @param string $regex Representation.
175 public function setRepresentation($regex) argument
178 $this->_regex = $regex;
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DSampler.php179 foreach ($this->_tokens[$this->_currentNamespace] as $_name => $regex) {
191 $token->setRepresentation($regex);
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DConsistency.php227 … ->given($_identifier = $this->realdom->regex('#^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x80-\xff]*$#'))
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFinder.php226 * @param string $regex Regex.
229 public function name($regex) argument
231 $this->_filters[] = function (\SplFileInfo $current) use ($regex) {
232 return 0 !== preg_match($regex, $current->getBasename());
243 * @param string $regex Regex.
246 public function notIn($regex) argument
248 $this->_filters[] = function (\SplFileInfo $current) use ($regex) {
250 if (0 !== preg_match($regex, $part)) {
/plugin/findologicxmlexport/vendor/hoa/iterator/Recursive/
H A DRegularExpression.php60 * @param string $regex The regular expression to
72 $regex, argument
77 parent::__construct($iterator, $regex, $mode, $flags, $pregFlags);
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DRegularExpression.php160 * @param string $regex The regular expression to
172 $regex, argument
179 $this->_regex = $regex;
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DRegularExpression.php83 $regex = new LUT\Recursive\RegularExpression($map, '/a/'),
84 $iterator = new LUT\Recursive\Iterator($regex)
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DREADME.md8 …<a href="https://travis-ci.org/hoaproject/regex"><img src="https://img.shields.io/travis/hoaprojec…
9 …ps://coveralls.io/github/hoaproject/regex?branch=master"><img src="https://img.shields.io/coverall…
10 …<a href="https://packagist.org/packages/hoa/regex"><img src="https://img.shields.io/packagist/dt/h…
11 …<a href="https://hoa-project.net/LICENSE"><img src="https://img.shields.io/packagist/l/hoa/regex.s…
24 …d](https://img.shields.io/badge/organisation-board-ff0066.svg)](https://waffle.io/hoaproject/regex)
36 require [`hoa/regex`](https://packagist.org/packages/hoa/regex):
39 $ composer require hoa/regex '~1.0'
/plugin/findologicxmlexport/vendor/hoa/ustring/Test/Unit/
H A DUstring.php1053 ->given($datum = $this->sample($this->realdom->regex('/\w{7,42}/')))
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DUstring.php580 * @param string $regex Characters to remove.
585 public function trim($regex = '\s', $side = 3 /* static::BEGINNING | static::END */) argument
587 $regex = '(?:' . $regex . ')+';
591 $handle .= '(^' . $regex . ')';
599 $handle .= '(' . $regex . '$)';

12345678910>>...16