Home
last modified time | relevance | path

Searched full:next (Results 1 – 25 of 2697) sorted by relevance

12345678910>>...108

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
DUselessOverridingMethodSniff.php83 $next = ++$token['scope_opener'];
86 for (; $next <= $end; ++$next) {
87 $code = $tokens[$next]['code'];
99 if ($tokens[$next]['code'] !== T_PARENT) {
103 // Find next non empty token index, should be double colon.
104 $next = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next + 1), null, true);
107 if ($next === false || $tokens[$next]['code'] !== T_DOUBLE_COLON) {
111 // Find next non empty token index, should be the function name.
112 $next = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next + 1), null, true);
115 if ($next === false || $tokens[$next]['content'] !== $methodName) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/
DUseDeclarationSniff.php71 … $next = $phpcsFile->findNext(array(T_COMMA, T_SEMICOLON, T_OPEN_USE_GROUP), ($stackPtr + 1));
72 if ($tokens[$next]['code'] !== T_SEMICOLON) {
76 if ($tokens[$next]['code'] === T_COMMA) {
77 $phpcsFile->fixer->replaceToken($next, ';'.$phpcsFile->eolChar.'use ');
79 … $baseUse = rtrim($phpcsFile->getTokensAsString($stackPtr, ($next - $stackPtr)));
80 $closingCurly = $phpcsFile->findNext(T_CLOSE_USE_GROUP, ($next + 1));
85 for ($i = $stackPtr; $i <= $next; $i++) {
91 …$next = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next + 1), $closingCurly, tru…
93 … $whitespace = $phpcsFile->findPrevious(T_WHITESPACE, ($next - 1), null, true);
94 for ($i = ($whitespace + 1); $i < $next; $i++) {
[all …]
/plugin/asciidocjs/node_modules/async/internal/
DDoublyLinkedList.js8 // to adjust the next and last properties. We implement only the minimal functionality
17 if (node.prev) node.prev.next = node.next;else this.head = node.next;
18 if (node.next) node.next.prev = node.prev;else this.tail = node.prev;
20 node.prev = node.next = null;
32 newNode.next = node.next;
33 if (node.next) node.next.prev = newNode;else this.tail = newNode;
34 node.next = newNode;
40 newNode.next = node;
41 if (node.prev) node.prev.next = newNode;else this.head = newNode;
70 cur = cur.next;
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
D57.57.js1next:"@includedeclaration"}],["[@](keyframes|-webkit-keyframes|-moz-keyframes|-o-keyframes)",{toke… property
D16.16.js1next:"@keyframedeclaration"}],["[@](page|content|font-face|-moz-document)",{token:"keyword"}],["[@… property
D45.45.js1next:"@tag.$1"}]}},"$2@keywords":["",{token:"keyword.$2"}],"@default":["",""]}}],[/^(\s*)(#[a-zA-Z… property
D57.57.js.map1next: '@includedeclaration' }],\n [\n '[@](keyframes|-webkit-keyframes|-…
D64.64.js1next:"@specialFunc"},"@mainFunctions":"keyword","@builtinFunctions":"variable","@default":"operato… property
D24.24.js1next:"@script"}]],[/(<)(style)/,["delimiter",{token:"tag",next:"@style"}]],[/(<)((?:[\w\-]+:)?[\w\… property
D65.65.js1next:"@script"}]],[/(<)(style)/,["delimiter.html",{token:"tag.html",next:"@style"}]],[/(<)((?:[\w\… property
/plugin/codemirror/dist/modes/
Dlivescript.min.js1next||"start";if(c){b.next=b.next;var d=f[c];if(d.splice){for(var e=0;e<d.length;++e){var g=d[e];i… property
Ddockerfile.min.js1next:"from"},{regex:k,token:[null,"keyword",null,"error"],sol:true},{regex:e,token:[null,"keyword"… property
Dlivescript.min.js.map1next","nr","Rules","splice","i$","length","r","regex","match","token","external","startState","las…
Ddylan.min.js1next();return m(a,b,p(d,"string"))}else if(d=="/"){a.next();if(a.eat("*")){return m(a,b,o)}else if…
Dspreadsheet.min.js1next();b.stack.unshift("string")}}switch(b.stack[0]){case"string":while(b.stack[0]==="string"&&!a.…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/
DObjectOperatorIndentSniff.php72 $next = $phpcsFile->findNext(
81 if ($next === false) {
116 $next = $stackPtr;
119 while ($next !== false) {
122 if (isset($tokens[$next]['nested_parenthesis']) === true) {
123 $brackets = $tokens[$next]['nested_parenthesis'];
127 if (isset($tokens[$next]['conditions']) === true) {
128 $conditions = $tokens[$next]['conditions'];
133 $prev = $phpcsFile->findPrevious(T_WHITESPACE, ($next - 1), $stackPtr, true);
134 $indent = $tokens[($next - 1)];
[all …]
/plugin/scrape/vendor/symfony/css-selector/Parser/
DTokenStream.php77 * Returns next token.
121 * Returns next identifier token.
123 * @throws SyntaxErrorException If next token is not an identifier
127 $next = $this->getNext();
129 if (!$next->isIdentifier()) {
130 throw SyntaxErrorException::unexpectedToken('identifier', $next);
133 return $next->getValue();
137 * Returns next identifier or null if star delimiter token is found.
139 * @throws SyntaxErrorException If next token is not an identifier or a star delimiter
143 $next = $this->getNext();
[all …]
/plugin/upgrade/
Dadmin.php45 $next = false;
62 $this->nextStep($abrt, $next, $ok);
85 if ($next) {
87 name="step[' . $next . ']"
103 $this->displayProgressBar($next);
109 * @param string $next the next step
111 private function displayProgressBar($next) argument
120 if ($step == $next) $active = false;
139 * @param bool $next
142 private function nextStep(&$abrt, &$next, &$ok) argument
[all …]
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dparse.js254 next();
264 var ch = next(true, true);
275 function next(signal_eof, in_string) { function
295 while (i-- > 0) next();
353 next();
358 while ((ch = peek()) && pred(ch, ret)) ret += next();
394 return token("bigint", num.toLowerCase() + next());
398 var seq = next(true, in_string);
401 var ch = next(true, in_string);
404 seq += next(true, in_string) + next(true, in_string) + next(true, in_string);
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
DDuplicateStyleDefinitionSniff.php67 $next = $stackPtr;
71 $next = $phpcsFile->findNext(array(T_STYLE, T_OPEN_CURLY_BRACKET), ($next + 1), $end);
72 if ($next === false) {
77 if ($tokens[$next]['code'] === T_OPEN_CURLY_BRACKET) {
78 $next = $tokens[$next]['bracket_closer'];
82 $name = $tokens[$next]['content'];
87 $phpcsFile->addError($error, $next, 'Found', $data);
89 $styleNames[$name] = $next;
91 } while ($next !== false);
DOpacitySniff.php68 $next = $phpcsFile->findNext(array(T_COLON, T_WHITESPACE), ($stackPtr + 1), null, true);
70 if ($next === false
71 || ($tokens[$next]['code'] !== T_DNUMBER
72 && $tokens[$next]['code'] !== T_LNUMBER)
77 $value = $tokens[$next]['content'];
78 if ($tokens[$next]['code'] === T_LNUMBER) {
81 $phpcsFile->addError($error, $next, 'Invalid');
86 $phpcsFile->addError($error, $next, 'DecimalPrecision');
90 $fix = $phpcsFile->addFixableError($error, $next, 'PointNotRequired', $data);
92 $phpcsFile->fixer->replaceToken($next, $value{0});
[all …]
/plugin/asciidocjs/node_modules/regenerator-runtime/
Druntime.js42 // The ._invoke method unifies the implementations of the .next,
109 // Helper for defining the .next, .throw, and .return methods of the
112 ["next", "throw", "return"].forEach(function(method) {
162 invoke("next", value, resolve, reject);
220 // Define the unified helper method that is used to implement .next,
241 : iter.next().then(function(result) {
242 return result.done ? result.value : iter.next();
277 if (context.method === "next") {
382 context.next = delegate.nextLoc;
386 // context.method was "next", forget context.arg since it has been
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/
DDuplicatePropertySniff.php70 …$next = $phpcsFile->findNext($wantedTokens, ($stackPtr + 1), $tokens[$stackPtr]['bracket_closer']);
71 while ($next !== false && $next < $tokens[$stackPtr]['bracket_closer']) {
72 if ($tokens[$next]['code'] === T_OBJECT) {
74 $next = $tokens[$next]['bracket_closer'];
76 $propName = $tokens[$next]['content'];
83 $phpcsFile->addError($error, $next, 'Found', $data);
86 $properties[$propName] = $next;
89 … $next = $phpcsFile->findNext($wantedTokens, ($next + 1), $tokens[$stackPtr]['bracket_closer']);
/plugin/asciidocjs/node_modules/acorn/src/
Dtokenize.js31 // Move to the next token
33 pp.next = function() { function in pp
45 this.next()
53 return {next: function () {
62 // Toggle strict mode. Re-reads the next number or string to please
96 let next = this.input.charCodeAt(this.pos + 1)
97 return (code << 10) + next - 0x35fdc00
176 // the token, so that the next one's `start` will point at the
191 // This is the function that is called to fetch the next token. It
199 let next = this.input.charCodeAt(this.pos + 1)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js31 // Move to the next token
33 pp.next = function() { function in pp
45 this.next()
53 return {next: function () {
62 // Toggle strict mode. Re-reads the next number or string to please
109 let next = this.input.charCodeAt(this.pos + 1)
110 return (code << 10) + next - 0x35fdc00
189 // the token, so that the next one's `start` will point at the
204 // This is the function that is called to fetch the next token. It
212 let next = this.input.charCodeAt(this.pos + 1)
[all …]

12345678910>>...108