Home
last modified time | relevance | path

Searched refs:tokens (Results 201 – 225 of 386) sorted by relevance

12345678910>>...16

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/
H A DBasePhpFormulaLoader.php40 $tokens = token_get_all('<?php '.$prototype);
41 array_shift($tokens);
43 $this->prototypes[$prototype] = array($tokens, $options);
56 $tokens = token_get_all($resource->getContent());
59 while ($token = array_shift($tokens)) {
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.pl86 my @tokens = split( " ", $ret, 5 );
87 printWordsElem( $textInputIdx, $wordIdx, $tokens[1] );
89 if( $tokens[4] ) {
90 @suggs = split( ", ", $tokens[4] );
/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] );
/plugin/tagfilter/script/select2/
H A Drelease.sh22 tokens="s/@@ver@@/$ver/g;s/\@@timestamp@@/$timestamp/g"
47 find . -name "$js" | xargs -I{} sed -e "$tokens" -i -- {}
48 find . -name "$css" | xargs -I{} sed -e "$tokens" -i -- {}
58 cat LICENSE | sed "$tokens" >> "$mini"
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/
H A DElseIfDeclarationSniff.php58 $tokens = $phpcsFile->getTokens();
60 if ($tokens[$stackPtr]['code'] === T_ELSEIF) {
66 if ($tokens[$next]['code'] === T_IF) {
/plugin/combo/vendor/carica/phpcss/src/
H A DPhpCss.php53 $tokens = array();
55 $scanner->scan($tokens, $cssSelector);
56 $parser = new PhpCss\Parser\Standard($tokens);
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A DREADME.md21 $tokens = $encoder->encode($prompt); // [32, 72, 318, 3608]
23 // Get tokens count:
24 echo count($tokens); // 4
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/
H A DValidClassNameSniff.php62 $tokens = $phpcsFile->getTokens();
65 $name = trim($tokens[$className]['content']);
66 $errorData = array(ucfirst($tokens[$stackPtr]['content']));
/plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/
H A DLanguage.php20 protected $tokens = []; variable in LanguageDetection\\Language
45 $tokens = [];
51 $tokens += require $file;
55 foreach ($tokens as $lang => $value) {
56 $this->tokens[$lang] = \array_flip($value);
76 foreach ($this->tokens as $lang => $value)
/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/authg2fa/
H A DTokenHelper.php78 $tokens = $this->getTokens();
79 if(isset($tokens[$user]))
80 return $tokens[$user];
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DCommonTokenStream.php9 * token streams to tokens on a particular channel (tokens where
12 * This token stream provides access to all tokens by index or when calling
14 * is only used for code accessing tokens via the lookahead methods
18 * By default, tokens are placed on the default channel
26 * {@see Lexer::skip()} do not produce tokens at all, so input text matched by
33 * Specifies the channel to use for filtering tokens.
37 * default channel assigned to tokens created by the lexer.
45 * source and filtering tokens to the specified channel. Only tokens whos
[all...]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DTokenizer.php72 private $tokens; variable in Mustache_Tokenizer
205 $this->tokens[] = $token;
222 return $this->tokens;
233 $this->tokens = array();
252 $this->tokens[] = array(
288 $this->tokens[] = $token;
334 array_unshift($this->tokens, array(
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleCloudDocumentaiV1DocumentPage.php227 public function setTokens($tokens) argument
229 $this->tokens = $tokens;
236 return $this->tokens;
H A DGoogleCloudDocumentaiV1beta1DocumentPage.php227 public function setTokens($tokens) argument
229 $this->tokens = $tokens;
236 return $this->tokens;
H A DGoogleCloudDocumentaiV1beta2DocumentPage.php227 public function setTokens($tokens) argument
229 $this->tokens = $tokens;
236 return $this->tokens;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/
H A DDisallowObEndFlushSniff.php57 $tokens = $phpcsFile->getTokens();
59 if ($tokens[$stackPtr]['content'] === 'ob_end_flush') {
H A DGlobalKeywordSniff.php57 $tokens = $phpcsFile->getTokens();
59 $nextVar = $tokens[$phpcsFile->findNext(array(T_VARIABLE), $stackPtr)];
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/
H A DInlineHTMLSniff.php57 $tokens = $phpcsFile->getTokens();
58 if (substr($tokens[$stackPtr]['content'], 0, 2) === '#!') {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/
H A DFirebugConsoleSniff.php65 $tokens = $phpcsFile->getTokens();
67 if (strtolower($tokens[$stackPtr]['content']) === 'console') {
/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/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DCharacterBeforePHPOpeningTagSniff.php56 $tokens = $phpcsFile->getTokens();
57 if (substr($tokens[0]['content'], 0, 2) === '#!') {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/
H A DNoSpaceAfterCastSniff.php57 $tokens = $phpcsFile->getTokens();
59 if ($tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
H A DGlobalFunctionSniff.php57 $tokens = $phpcsFile->getTokens();
59 if (empty($tokens[$stackPtr]['conditions']) === true) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/
H A DValidLogicalOperatorsSniff.php61 $tokens = $phpcsFile->getTokens();
68 $operator = strtolower($tokens[$stackPtr]['content']);

12345678910>>...16