Home
last modified time | relevance | path

Searched refs:tokens (Results 126 – 150 of 386) sorted by last modified time

12345678910>>...16

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DFile.php410 $tokens = token_get_all($buffer);
418 foreach ($tokens as $j => $token) {
420 if ($token === '"' && $tokens[$j - 1] !== '\\') {
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLlk.php88 $ruleAnalyzer = new Rule\Analyzer($tokens);
91 return new Parser($tokens, $rules, $pragmas);
120 foreach ($parser->getTokens() as $namespace => $tokens) {
123 foreach ($tokens as $tokenName => $tokenValue) {
256 * @param array $tokens Extracted tokens.
267 $tokens = ['default' => []];
304 if (!isset($tokens[$matches[1]])) {
305 $tokens[$matches[1]] = [];
311 $tokens[$matches[1]]['skip'] =
326 if (!isset($tokens[$matches[1]])) {
[all …]
H A DLexer.php107 * @param array $tokens Tokens to be returned.
111 public function lexMe($text, array $tokens) argument
114 $this->_tokens = $tokens;
121 foreach ($this->_tokens as &$tokens) {
124 foreach ($tokens as $fullLexeme => $regex) {
135 unset($tokens[$fullLexeme]);
139 $tokens = $_tokens;
H A DParser.php128 * @param array $tokens Tokens.
133 array $tokens = [], argument
137 $this->_tokens = $tokens;
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/Llk/Rule/
H A DAnalyzer.php70 $analyzer = new SUT($tokens),
92 $analyzer = new SUT($tokens),
124 $analyzer = new SUT($tokens),
173 $analyzer = new SUT($tokens),
194 $analyzer = new SUT($tokens),
307 $analyzer = new SUT($tokens)
323 $tokens = [],
325 $analyzer = new SUT($tokens)
338 $tokens = [],
340 $analyzer = new SUT($tokens)
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/src/Types/
H A DContextFactory.php74 while ($tokens->valid()) {
75 switch ($tokens->current()[0]) {
98 $tokens->next();
107 $tokens->next();
126 …while ($tokens->valid() && ($tokens->current()[0] === T_STRING || $tokens->current()[0] === T_NS_S…
129 $tokens->next();
169 …while ($tokens->valid() && ($tokens->current()[0] !== T_STRING) && ($tokens->current()[0] !== T_NS…
170 $tokens->next();
185 while ($tokens->valid()
192 if ($tokens->current()[0] === T_STRING || $tokens->current()[0] === T_NS_SEPARATOR) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php58 protected $tokens = []; variable in PHP_Token_Stream
120 $this->tokens = [];
156 $numTokens = count($tokens);
161 $token = $tokens[$i];
170 … } elseif ($name == 'USE' && isset($tokens[$i + 2][0]) && $tokens[$i + 2][0] == T_FUNCTION) {
172 $text .= $tokens[$i + 1][1] . $tokens[$i + 2][1];
212 return count($this->tokens);
218 public function tokens() function in PHP_Token_Stream
220 return $this->tokens;
544 return $this->tokens[$offset];
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/
H A DToken.php93 $tokens = $this->tokenStream->tokens();
134 $tokens = $this->tokenStream->tokens();
180 $tokens = $this->tokenStream->tokens();
207 $tokens = $this->tokenStream->tokens();
269 $tokens = $this->tokenStream->tokens();
350 $tokens = $this->tokenStream->tokens();
404 $tokens = $this->tokenStream->tokens();
445 $tokens = $this->tokenStream->tokens();
566 $tokens = $this->tokenStream->tokens();
607 $tokens = $this->tokenStream->tokens();
[all …]
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
H A DAbstractLexer.php50 private $tokens = array(); variable in Doctrine\\Common\\Lexer\\AbstractLexer
93 $this->tokens = array();
161 * @param array $tokens
165 public function isNextTokenAny(array $tokens) argument
167 return null !== $this->lookahead && in_array($this->lookahead['type'], $tokens, true);
179 $this->lookahead = (isset($this->tokens[$this->position]))
180 ? $this->tokens[$this->position++] : null;
219 if (isset($this->tokens[$this->position + $this->peek])) {
220 return $this->tokens[$this->position + $this->peek++];
265 $this->tokens[] = array(
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DLl1.php327 * @param array $tokens Tokens.
336 array $tokens, argument
344 $this->setTokens($tokens);
722 * @param array $tokens Tokens.
725 public function setTokens(array $tokens) argument
728 $this->_tokens = $tokens;
H A DREADME.md69 A grammar is constituted by tokens (the units of a word) and rules (please, see
71 declares tokens with the following construction:
78 [PCRE](http://pcre.org/). We can skip tokens with the `%skip` construction.
135 * `token[i]` to unify tokens value between them.
234 all branches and tokens in the grammar:
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/
H A DLexer.php59 $tokens = [
77 $tokens = [
139 $tokens = [
174 $tokens = [
233 $tokens = [
292 $tokens = [
315 $tokens = [
340 $tokens = [
402 $tokens = [
427 $tokens = [
[all …]
H A DLlk.php219 ->when($result = SUT::parsePP($pp, $tokens, $rules, $pragmas, 'streamFoo'))
223 ->array($tokens)
254 ->when($result = SUT::parsePP($pp, $tokens, $rules, $pragmas, 'streamFoo'))
258 ->array($tokens)
287 ->when($result = SUT::parsePP($pp, $tokens, $rules, $pragmas, 'streamFoo'))
291 ->array($tokens)
314 SUT::parsePP($pp, $tokens, $rules, $pragmas, 'streamFoo');
338 ->when($result = SUT::parsePP($pp, $tokens, $rules, $pragmas, 'streamFoo'))
342 ->array($tokens)
362 ->when($result = SUT::parsePP($pp, $tokens, $rules, $pragmas, 'streamFoo'))
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DAnalyzer.php122 * @param array $tokens Tokens.
124 public function __construct(array $tokens) argument
126 $this->_tokens = $tokens;
428 foreach ($this->_tokens as $namespace => $tokens) {
429 foreach ($tokens as $token => $value) {
471 foreach ($this->_tokens as $namespace => $tokens) {
472 foreach ($tokens as $token => $value) {
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DREADME.md106 tokens: `a` and `b`, followed by a quantification, followed by another
108 two tokens: `c` and `d`, between 2 to 4 times. The second quantification is the
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DDescriptionFactory.php114 * @param string[] $tokens
119 private function parse($tokens, TypeContext $context) argument
121 $count = count($tokens);
126 $tags[] = $this->tagFactory->create($tokens[$i], $context);
127 $tokens[$i] = '%' . ++$tagCount . '$s';
135 $tokens[$i] = str_replace(['{@}', '{}', '%'], ['@', '}', '%%'], $tokens[$i]);
138 return [implode('', $tokens), $tags];
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
H A DCodeCoverage.php762 $tokens = \PHP_Token_Stream_CachingFactory::get($filename);
764 $tokens = new \PHP_Token_Stream($filename);
767 $classes = array_merge($tokens->getClasses(), $tokens->getTraits());
768 $tokens = $tokens->tokens();
770 foreach ($tokens as $token) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md102 * Fixed bug in closure-based argument tokens (#181)
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DLogicalAndToken.php21 private $tokens = array(); variable in Prophecy\\Argument\\Token\\LogicalAndToken
32 $this->tokens[] = $argument;
45 if (0 === count($this->tokens)) {
50 foreach ($this->tokens as $token) {
78 return sprintf('bool(%s)', implode(' AND ', $this->tokens));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DTokenStreamTest.php17 protected static $tokens; variable in Twig_Tests_TokenStreamTest
21 self::$tokens = [
47 $stream = new TokenStream(self::$tokens);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DFile.php403 $this->processClasses($tokens);
404 $this->processTraits($tokens);
405 $this->processFunctions($tokens);
406 $this->linesOfCode = $tokens->getLinesOfCode();
407 unset($tokens);
579 $classes = $tokens->getClasses();
580 unset($tokens);
615 $traits = $tokens->getTraits();
616 unset($tokens);
651 $functions = $tokens->getFunctions();
[all …]
/plugin/gtime/gtlib/asn1/
H A DASN1ObjectId.php59 $tokens = explode('.', $value);
61 if (count($tokens) < 2) {
88 $tokens = explode('.', $this->value);
90 $b1 = (int) array_shift($tokens);
91 $b2 = (int) array_shift($tokens);
100 foreach ($tokens as $token) {
/plugin/gtime/gtlib/util/
H A DGTUtil.php256 $tokens = array(
265 foreach ($tokens as $name => $value) {
272 (int) $tokens['hour'],
273 (int) $tokens['minute'],
274 (int) $tokens['second'],
275 (int) $tokens['month'],
276 (int) $tokens['day'],
277 (int) $tokens['year']
/plugin/mdpage/vendor/cebe/markdown/
H A DREADME.md478 parse the tokens as they find them. The only implentation that I have found that uses
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.pl88 my @tokens = split( " ", $ret, 5 );
89 printWordsElem( $textInputIdx, $wordIdx, $tokens[1] );
91 if( $tokens[4] ) {
92 @suggs = split( ", ", $tokens[4] );

12345678910>>...16