/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ |
H A D | DocCommentAlignmentSniff.php | 70 $ignore = PHP_CodeSniffer_Tokens::$emptyTokens; 72 $ignore[] = T_EQUAL; 73 $ignore[] = T_STRING; 74 $ignore[] = T_OBJECT_OPERATOR; 77 $nextToken = $phpcsFile->findNext($ignore, ($stackPtr + 1), null, true); 78 $ignore = array( 93 if (isset($ignore[$tokens[$nextToken]['code']]) === false) {
|
H A D | InlineCommentSniff.php | 83 $ignore = array( 103 if (in_array($tokens[$nextToken]['code'], $ignore) === true) { 110 $ignore = PHP_CodeSniffer_Tokens::$emptyTokens; 111 $ignore[] = T_EQUAL; 112 $ignore[] = T_STRING; 113 $ignore[] = T_OBJECT_OPERATOR; 114 $nextToken = $phpcsFile->findNext($ignore, ($nextToken + 1), null, true);
|
H A D | VariableCommentSniff.php | 49 $ignore = array( 58 $commentEnd = $phpcsFile->findPrevious($ignore, ($stackPtr - 1), null, true);
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/ |
H A D | ignore_missing.test | 4 {% include ["foo.twig", "bar.twig"] ignore missing %} 5 {% include "foo.twig" ignore missing %} 6 {% include "foo.twig" ignore missing with {} %} 7 {% include "foo.twig" ignore missing with {} only %}
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/ |
H A D | AbstractEndpoint.php | 269 $ignore = isset($this->options['client']['ignore']) ? $this->options['client']['ignore'] : null; 270 if (isset($ignore) === true) { 271 if (is_string($ignore)) { 272 $this->options['client']['ignore'] = explode(",", $ignore); 273 } elseif (is_array($ignore)) { 274 $this->options['client']['ignore'] = $ignore; [all...] |
/plugin/dev/skel/ |
H A D | _gitattributes | 1 /.* export-ignore 2 /_test export-ignore
|
/plugin/displayorphans/ |
H A D | README.md | 38 | `ignore_orphaned_pages` | empty | Space-separated list of pages to ignore when generating tables … 39 | `ignore_orphaned_namespaces` | empty | Space-separated list of namespaces to ignore when generati… 40 | `ignore_wanted_pages` | empty | Space-separated list of pages to ignore when generating tables of… 41 | `ignore_wanted_namespaces` | empty | Space-separated list of namespaces to ignore when generating… 42 | `ignore_linked_pages` | empty | Space-separated list of pages to ignore when generating tables of… 43 | `ignore_linked_namespaces` | empty | Space-separated list of namespaces to ignore when generating…
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
H A D | include.rst | 91 The ``ignore missing`` feature has been added in Twig 1.2. 93 You can mark an include with ``ignore missing`` in which case Twig will ignore 99 {% include 'sidebar.html' ignore missing %} 100 {% include 'sidebar.html' ignore missing with {'foo': 'bar'} %} 101 {% include 'sidebar.html' ignore missing only %} 113 If ``ignore missing`` is given, it will fall back to rendering nothing if none
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ |
H A D | MemberVarSpacingSniff.php | 48 $ignore = PHP_CodeSniffer_Tokens::$methodPrefixes; 49 $ignore[] = T_VAR; 50 $ignore[] = T_WHITESPACE; 53 $prev = $phpcsFile->findPrevious($ignore, ($stackPtr - 1), null, true);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ |
H A D | SAPIUsageSniff.php | 57 $ignore = array( 65 if (isset($ignore[$tokens[$prevToken]['code']]) === true) {
|
H A D | ForbiddenFunctionsSniff.php | 126 $ignore = array( 153 if (isset($ignore[$tokens[$prevToken]['code']]) === true) { 159 if (isset($ignore[$tokens[$nextToken]['code']]) === true) {
|
/plugin/autolink3/ |
H A D | sys.php | 31 $ignore = 0; 36 if ($element == "[[" || $element == "{{") $ignore = 1; 37 elseif ($element == "]]" || $element == "}}") $ignore = 0; 38 elseif ($ignore == 0)
|
/plugin/directorylist/ |
H A D | readme.md | 23 <directorylist: path="value" ignore="value" recursive="1" fileorder="asc"> 41 You can ignore directories or files with the ignore argument. 43 The ignore argument has to be a comma separated [shell pattern](http://www.php.net/manual/en/functi… 50 <directorylist: [...] ignore="*.pdf,*.js,specialfile.doc,some_*_files.xlsx">
|
/plugin/freechat/phpfreechat/src/commands/ |
H A D | help.class.php | 20 …$ignore = array("updatemynick", "getnewmsg", "notice", "getonlinenick", "error", "update", "asknic… 27 if (!in_array($res[1],$ignore)) $cmdlist[] = $res[1];
|
/plugin/git/action/ |
H A D | merge.php | 32 case 'ignore' : $this->ignore(); break; 63 function ignore() function in action_plugin_git_merge
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
H A D | File.php | 1901 &$ignore=0 argument 1915 $originalIgnore = $ignore; 1964 && $ignore === 0 1990 $ignore--; 2239 $ignore 2332 $ignore++; 2340 $ignore--; 3460 if ($ignore !== null) { 3461 $ignore = (array) $ignore; 3528 if ($ignore !== null) { [all …]
|
/plugin/quickstats/ |
H A D | script.js | 129 var ignore = document.getElementById('qs_ignore').checked;
152 if(!ignore || priority == 'country') {
163 if(!ignore || priority == 'agent') {
197 if(!ignore || priority == 'ip') {
202 if(!ignore || priority == 'page') {
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/ |
H A D | Connection.php | 327 $ignore = $request['client']['ignore'] ?? []; variable in Elasticsearch\\Connections\\Connection 331 $ignore[] = 404; 333 $this->process4xxError($request, $response, $ignore); 335 $ignore = $request['client']['ignore'] ?? []; variable in Elasticsearch\\Connections\\Connection 336 $this->process5xxError($request, $response, $ignore); 666 private function process4xxError(array $request, array $response, array $ignore): ?ElasticsearchException argument 675 if (array_search($response['status'], $ignore) !== false) { 701 private function process5xxError(array $request, array $response, array $ignore) argument [all...] |
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ |
H A D | DisallowComparisonAssignmentSniff.php | 82 $ignore = array( 88 $next = $phpcsFile->findNext($ignore, ($stackPtr + 1), null, true);
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/ |
H A D | disable-code-coverage-ignore.phpt | 2 phpunit --colors=never --coverage-text=php://stdout --disable-coverage-ignore IgnoreCodeCoverageCla… 14 $_SERVER['argv'][4] = '--disable-coverage-ignore';
|
/plugin/top/ |
H A D | CrawlerDetect.php | 34 protected static $ignore = array( variable in Jaybizzle\\CrawlerDetect\\CrawlerDetect 389 return '('.implode('|', self::$ignore).')';
|
/plugin/rating/ |
H A D | CrawlerDetect.php | 34 protected static $ignore = array( variable in Jaybizzle\\CrawlerDetect\\CrawlerDetect 389 return '('.implode('|', self::$ignore).')';
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | TTFontFile.php | 2196 if (isset($v['ignore']) && $v['ignore']) { 2197 $rtl[$key]['ignore'][$kk] = $v['ignore']; 2468 $ignore = $this->_getGSUBignoreString($Lookup[$i]['Flag'], $Lookup[$i]['MarkFilteringSet']); 2469 $repl = $this->_makeGSUBinputMatch($inputGlyphs, $ignore); 2470 $subs = $this->_makeGSUBinputReplacement(count($inputGlyphs), $substitute, $ignore, 0, count($inputGlyphs), 0); 2477 $ignore = $this->_getGSUBignoreString($Lookup[$i]['Flag'], $Lookup[$i]['MarkFilteringSet']); 2491 $contextInputMatch = $this->_makeGSUBcontextInputMatch($inputGlyphs, $ignore, [], 0); 2513 $volt[] = ['match' => $lookupGlyphs[0], 'replace' => $REPL, 'tag' => $tag, 'prel' => $backtrackGlyphs, 'postl' => $lookaheadGlyphs, 'ignore' 3053 _makeGSUBcontextInputMatch($inputGlyphs, $ignore, $lookupGlyphs, $seqIndex) global() argument 3076 _makeGSUBinputMatch($inputGlyphs, $ignore) global() argument 3093 _makeGSUBbacktrackMatch($backtrackGlyphs, $ignore) global() argument 3108 _makeGSUBlookaheadMatch($lookaheadGlyphs, $ignore) global() argument 3123 _makeGSUBinputReplacement($nInput, $REPL, $ignore, $nBsubs, $mLen, $seqIndex) global() argument [all...] |
/plugin/combo/vendor/carica/phpcss/src/PhpCss/ |
H A D | Parser.php | 183 protected function ignore($expectedTokens): bool { function in PhpCss\\Parser 186 return $this->ignore(array($expectedTokens));
|
/plugin/gitbacked/action/ |
H A D | editcommit.php | 60 $ignore = false; 66 $ignore = true; 70 return $ignore;
|