| /plugin/findologicxmlexport/vendor/composer/ |
| D | autoload_classmap.php | 195 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 196 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 197 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 198 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 199 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 200 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 201 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 202 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 203 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 204 'PHP_Token_ASYNC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', [all …]
|
| D | autoload_static.php | 398 'PHP_Token' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 399 'PHP_TokenWithScope' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 400 … 'PHP_TokenWithScopeAndVisibility' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 401 'PHP_Token_ABSTRACT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 402 'PHP_Token_AMPERSAND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 403 'PHP_Token_AND_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 404 'PHP_Token_ARRAY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 405 'PHP_Token_ARRAY_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 406 'PHP_Token_AS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 407 'PHP_Token_ASYNC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', [all …]
|
| /plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/ |
| H A D | Sequence.php | 25 * Parse the token stream for a simple selector sequence, 33 $token = $this->lookahead( 35 Scanner\Token::IDENTIFIER, 36 Scanner\Token::ID_SELECTOR, 37 Scanner\Token::CLASS_SELECTOR, 38 Scanner\Token::PSEUDO_CLASS, 39 Scanner\Token::PSEUDO_ELEMENT, 40 Scanner\Token::ATTRIBUTE_SELECTOR_START, 41 Scanner\Token::COMBINATOR, 44 while (isset($token)) { [all …]
|
| H A D | PseudoClass.php | 36 $token = $this->read(Scanner\Token::PSEUDO_CLASS); 37 $name = substr($token->content, 1); 42 $this->read(Scanner\Token::PARENTHESES_START); 43 $this->ignore(Scanner\Token::WHITESPACE); 46 $parameterToken = $this->read(Scanner\Token::IDENTIFIER); 52 Scanner\Token::IDENTIFIER, 53 Scanner\Token::NUMBER, 54 Scanner\Token::PSEUDO_CLASS_POSITION 63 [Scanner\Token::SINGLEQUOTE_STRING_START, Scanner\Token::DOUBLEQUOTE_STRING_START] 71 $parameter = $this->read(Scanner\Token::NUMBER); [all …]
|
| /plugin/asciidocjs/node_modules/clean-css/lib/writer/ |
| D | helpers.js | 7 var Token = require('../tokenizer/token'); variable 9 function supportsAfterClosingBrace(token) { argument 10 return token[1][1] == 'background' || token[1][1] == 'transform' || token[1][1] == 'src'; 13 function afterClosingBrace(token, valueIndex) { argument 14 return token[valueIndex][1][token[valueIndex][1].length - 1] == Marker.CLOSE_ROUND_BRACKET; 17 function afterComma(token, valueIndex) { argument 18 return token[valueIndex][1] == Marker.COMMA; 21 function afterSlash(token, valueIndex) { argument 22 return token[valueIndex][1] == Marker.FORWARD_SLASH; 25 function beforeComma(token, valueIndex) { argument [all …]
|
| /plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/ |
| H A D | Selector.php | 14 * Scanner Status Selector recognizes token of a css selector sequence. 23 Scanner\Token::SEPARATOR => ',', 24 Scanner\Token::ATTRIBUTE_SELECTOR_START => '[', 25 Scanner\Token::PARENTHESES_START => '(', 26 Scanner\Token::PARENTHESES_END => ')', 27 Scanner\Token::SINGLEQUOTE_STRING_START => "'", 28 Scanner\Token::DOUBLEQUOTE_STRING_START => '"' 36 Scanner\Token::CLASS_SELECTOR => Scanner\Patterns::CLASS_SELECTOR, 37 Scanner\Token::ID_SELECTOR => Scanner\Patterns::ID_SELECTOR, 38 Scanner\Token::PSEUDO_CLASS => Scanner\Patterns::PSEUDO_CLASS, [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ |
| D | MakeWellFormed.php | 24 * Current token. 27 protected $token; variable in HTMLPurifier_Strategy_MakeWellFormed 77 list($zipper, $token) = HTMLPurifier_Zipper::fromArray($tokens); 78 if ($token === NULL) { 81 $reprocess = false; // whether or not to reprocess the same token 87 $this->token =& $token; 95 $context->register('CurrentToken', $token); 148 // status. This means that if we add a start token, because it 155 $reprocess ? $reprocess = false : $token = $zipper->next($token)) { 159 // possibility: disable rewinding if the current token has a [all …]
|
| D | RemoveForeignElements.php | 7 * tokens. If a token is not recognized but a TagTransform is defined for 53 $token = false; 54 $context->register('CurrentToken', $token); 61 foreach ($tokens as $token) { 63 if (empty($token->is_tag) || $token->name !== $remove_until) { 67 if (!empty($token->is_tag)) { 71 if (isset($definition->info_tag_transform[$token->name])) { 72 $original_name = $token->name; 75 $token = $definition-> 76 info_tag_transform[$token->name]->transform($token, $config, $context); [all …]
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/ |
| D | Argument.php | 14 use Prophecy\Argument\Token; alias 28 * @return Token\ExactValueToken 32 return new Token\ExactValueToken($value); 40 * @return Token\TypeToken 44 return new Token\TypeToken($type); 53 * @return Token\ObjectStateToken 57 return new Token\ObjectStateToken($methodName, $value); 65 * @return Token\CallbackToken 69 return new Token\CallbackToken($callback); 75 * @return Token\AnyValueToken [all …]
|
| /plugin/findologicxmlexport/vendor/hoa/regex/ |
| D | Grammar.pp | 49 %token negative_class_ \[\^ 50 %token class_ \[ 51 %token _class \] 52 %token range \- 55 %token internal_option \(\?[\-+]?[imsx]\) 58 %token lookahead_ \(\?= 59 %token negative_lookahead_ \(\?! 60 %token lookbehind_ \(\?<= 61 %token negative_lookbehind_ \(\?<! 64 %token named_reference_ \(\?\(< -> nc [all …]
|
| /plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/Selector/ |
| H A D | Attribute.php | 23 Scanner\Token::ATTRIBUTE_SELECTOR_END => ']', 24 Scanner\Token::SINGLEQUOTE_STRING_START => "'", 25 Scanner\Token::DOUBLEQUOTE_STRING_START => '"' 33 Scanner\Token::ATTRIBUTE_OPERATOR => Scanner\Patterns::ATTRIBUTE_OPERATOR, 34 Scanner\Token::WHITESPACE => Scanner\Patterns::WHITESPACE, 35 Scanner\Token::NUMBER => Scanner\Patterns::NUMBER, 36 Scanner\Token::IDENTIFIER => Scanner\Patterns::IDENTIFIER 40 * Try to get token in buffer at offset position. 44 * @return Scanner\Token 46 public function getToken(string $buffer, int $offset): ?Scanner\Token { [all …]
|
| /plugin/combo/vendor/carica/phpcss/src/PhpCss/ |
| H A D | Parser.php | 23 * @var array(Scanner\Token) 28 * Construct a parser object taking the token list to operate on as 43 * Execute the parsing process on the provided token stream 46 * current subsegment of the token stream. It is supposed to return a valid 53 * operate on the token stream. They will throw PhpCssParserExceptions 61 * Try to read any of the $expectedTokens from the token list and return 64 * This method tries to match the current token list against all of the 65 * provided tokens. If a match is found it is removed from the token list 75 * The special Token Scanner\Token::ANY may be used to indicate 77 * token may be specified, which does not make any sense, anyway. [all …]
|
| /plugin/asciidocjs/node_modules/clean-css/lib/reader/ |
| D | apply-source-maps.js | 9 var Token = require('../tokenizer/token'); variable 41 var token; 45 token = applyContext.sourceTokens[applyContext.index]; 46 source = findTokenSource(token); 53 singleSourceTokens.push(token); 54 applyContext.processedTokens.push(token); 56 if (token[0] == Token.COMMENT && MAP_MARKER_PATTERN.test(token[1])) { 57 return fetchAndApplySourceMap(token[1], source, singleSourceTokens, applyContext); 64 function findTokenSource(token) { argument 68 if (token[0] == Token.AT_RULE || token[0] == Token.COMMENT) { [all …]
|
| D | rebase.js | 5 var Token = require('../tokenizer/token'); variable 17 var token; 21 token = tokens[i]; 23 switch (token[0]) { 24 case Token.AT_RULE: 25 rebaseAtRule(token, validator, rebaseConfig); 27 case Token.AT_RULE_BLOCK: 28 rebaseProperties(token[2], validator, rebaseConfig); 30 case Token.COMMENT: 31 rebaseSourceMapComment(token, rebaseConfig); [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/ |
| D | PH5P.php | 77 private $token; variable in HTML5 531 /* In any case, emit the input character as a character token. Stay 569 /* In any case, emit the input character as a character token. 580 Emit an end-of-file token. */ 586 the text and emit it as a character token. */ 599 otherwise would also be treated as a character token and emit it 600 as a single character token. Stay in the data state. */ 621 // If nothing is returned, emit a U+0026 AMPERSAND character token. 622 // Otherwise, emit the character token that was returned. 643 U+003C LESS-THAN SIGN character token and switch to the data [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/ |
| D | ParserTest.php | 18 use Twig\Token; alias 40 new Token(Token::BLOCK_START_TYPE, '', 1), 41 new Token(Token::NAME_TYPE, 'foo', 1), 42 new Token(Token::BLOCK_END_TYPE, '', 1), 43 new Token(Token::EOF_TYPE, '', 1), 56 new Token(Token::BLOCK_START_TYPE, '', 1), 57 new Token(Token::NAME_TYPE, 'foobar', 1), 58 new Token(Token::BLOCK_END_TYPE, '', 1), 59 new Token(Token::EOF_TYPE, '', 1), 141 new Token(Token::BLOCK_START_TYPE, '', 1), [all …]
|
| D | TokenStreamTest.php | 12 use Twig\Token; alias 22 new Token(Token::TEXT_TYPE, 1, 1), 23 new Token(Token::TEXT_TYPE, 2, 1), 24 new Token(Token::TEXT_TYPE, 3, 1), 25 new Token(Token::TEXT_TYPE, 4, 1), 26 new Token(Token::TEXT_TYPE, 5, 1), 27 new Token(Token::TEXT_TYPE, 6, 1), 28 new Token(Token::TEXT_TYPE, 7, 1), 29 new Token(Token::EOF_TYPE, 0, 1), 50 $token = $stream->next(); [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/ |
| D | ExpressionParser.php | 74 $token = $this->parser->getCurrentToken(); 75 …while ($this->isBinary($token) && $this->binaryOperators[$token->getValue()]['precedence'] >= $pre… 76 $op = $this->binaryOperators[$token->getValue()]; 79 if ('is not' === $token->getValue()) { 81 } elseif ('is' === $token->getValue()) { 88 $expr = new $class($expr, $expr1, $token->getLine()); 91 $token = $this->parser->getCurrentToken(); 103 $token = $this->parser->getCurrentToken(); 105 if ($this->isUnary($token)) { 106 $operator = $this->unaryOperators[$token->getValue()]; [all …]
|
| /plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
| D | Parser.php | 32 * @return array Mustache token parse tree 69 * @param array $parent Parent token (default: null) 71 * @return array Mustache Token parse tree 78 $token = array_shift($tokens); 80 if ($token[Mustache_Tokenizer::LINE] === $this->lineNum) { 83 $this->lineNum = $token[Mustache_Tokenizer::LINE]; 87 if ($this->pragmaFilters && isset($token[Mustache_Tokenizer::NAME])) { 88 list($name, $filters) = $this->getNameAndFilters($token[Mustache_Tokenizer::NAME]); 90 $token[Mustache_Tokenizer::NAME] = $name; 91 $token[Mustache_Tokenizer::FILTERS] = $filters; [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/ |
| D | EmbedTokenParser.php | 17 use Twig\Token; alias 26 public function parse(Token $token) argument 34 … $parentToken = $fakeParentToken = new Token(Token::STRING_TYPE, '__parent__', $token->getLine()); 36 … $parentToken = new Token(Token::STRING_TYPE, $parent->getAttribute('value'), $token->getLine()); 38 … $parentToken = new Token(Token::NAME_TYPE, $parent->getAttribute('name'), $token->getLine()); 43 new Token(Token::BLOCK_START_TYPE, '', $token->getLine()), 44 new Token(Token::NAME_TYPE, 'extends', $token->getLine()), 46 new Token(Token::BLOCK_END_TYPE, '', $token->getLine()), 58 $stream->expect(Token::BLOCK_END_TYPE); 60 …me(), $module->getAttribute('index'), $variables, $only, $ignoreMissing, $token->getLine(), $this-… [all …]
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | Lexer.php | 24 public const DEFAULT_TOKEN_CHANNEL = Token::DEFAULT_CHANNEL; 25 public const HIDDEN = Token::HIDDEN_CHANNEL; 39 * The goal of all lexer rules/methods is to create a token object. 41 * create a single token. `nextToken` will return this object after 44 * If you subclass to allow multiple token emissions, then set this 45 * to the last token to be matched or something nonnull so that 46 * the auto token emit mechanism will not emit another token. 48 * @var Token|null 50 public $token; variable in Antlr\\Antlr4\\Runtime\\Lexer 53 * What character index in the stream did the current token start at? [all …]
|
| H A D | BufferedTokenStream.php | 12 * access to any previous token by index. 14 * This token stream ignores the value of {@see Token::getChannel()}. If your 15 * parser requires the token stream filter tokens to only those on a particular 16 * channel, such as {@see Token::DEFAULT_CHANNEL} or 17 * {@see Token::HIDDEN_CHANNEL}, use a filtering token stream such a 30 * A collection of all tokens fetched from the token source. The list is 34 * @var array<Token> 39 * The index into {@see BufferedTokenStream::tokens()} of the current token 40 * (next token to {@see BufferedTokenStream::consume()}). 46 * the first token has not yet been fetched from the token source. For [all …]
|
| /plugin/authgoogle/google/auth/ |
| D | Google_OAuth2.php | 33 public $token; variable in Google_OAuth2 44 const OAUTH2_TOKEN_URI = 'https://accounts.google.com/o/oauth2/token'; 96 // We got here from the redirect from a successful authorization grant, fetch the access token 107 $this->token['created'] = time(); 115 …throw new Google_AuthException("Error fetching OAuth2 access token, message: '$response'", $reques… 156 * @param string $token 159 public function setAccessToken($token) { argument 160 $token = json_decode($token, true); 161 if ($token == null) { 162 throw new Google_AuthException('Could not json decode the token'); [all …]
|
| /plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/Text/ |
| H A D | Double.php | 19 * Try to get token in buffer at offset position. 23 * @return Scanner\Token 25 public function getToken(string $buffer, int $offset): ?Scanner\Token { 27 return new Scanner\Token( 28 Scanner\Token::DOUBLEQUOTE_STRING_END, '"', $offset 33 return new Scanner\Token( 34 Scanner\Token::STRING_ESCAPED_CHARACTER, $tokenString, $offset 41 return new Scanner\Token( 42 Scanner\Token::STRING_CHARACTERS, $tokenString, $offset 49 * Check if token ends status [all …]
|
| /plugin/codemirror/dist/modes/ |
| D | factor.min.js | 1 …token:"comment"},{regex:/"""/,token:"string",next:"string3"},{regex:/(STRING:)(\s)/,token:["keywor… property
|