Home
last modified time | relevance | path

Searched refs:token (Results 51 – 75 of 922) sorted by relevance

12345678910>>...37

/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DEmbedTokenParser.php26 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()),
60 …me(), $module->getAttribute('index'), $variables, $only, $ignoreMissing, $token->getLine(), $this-…
63 public function decideBlockEnd(Token $token) argument
65 return $token->test('endembed');
/plugin/codemirror/dist/modes/
H A Dfactor.min.js.map1token","next","vocabulary","string","string2","string3","stack","meta","dontIndentStates","lineCom…
H A Drust.min.js.map1token","next","indent","dedent","string","string_raw","string_raw_hash","comment","meta","dontInde…
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DSampler.php140 $token = new Compiler\Llk\Rule\Token(
147 $token->setRepresentation(
164 protected function completeToken(Compiler\Llk\Rule\Token $token) argument
166 if (null !== $token->getRepresentation()) {
170 $name = $token->getTokenName();
171 $token->setNamespace($this->_currentNamespace);
175 $token->setRepresentation(
191 $token->setRepresentation($regex);
218 protected function generateToken(Compiler\Llk\Rule\Token $token) argument
220 $toNamespace = $this->completeToken($token);
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D24.24.js1token:"tag",next:"@script"}]],[/(<)(style)/,["delimiter",{token:"tag",next:"@style"}]],[/(<)((?:[\…
H A D57.57.js.map1token: 'delimiter.curly' },\n { open: '[', close: ']', token: 'delimiter.bracket' },\n …
H A D52.52.js1token:"delimiter.parenthesis"},{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",to…
H A D9.9.js1token:"key.identifier",next:"@popall"},"@default":{token:"key.identifier",next:"@type"}}}],[/^-+@s…
H A D68.68.js.map1token: 'delimiter' }, { token: 'tag', next: '@tag' }]],\n // Standard closing tag\n …
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DCommonTokenFactory.php19 * of text from the input after the lexer creates a token (e.g. the
22 * {@see UnsupportedOperationException}). Explicitly setting the token text
27 * overhead of copying text for every token unless explicitly requested.
50 * This token factory does not explicitly copy token text when constructing
70 $token = new CommonToken($type, $source, $channel, $start, $stop);
72 $token->setLine($line);
73 $token->setCharPositionInLine($column);
76 $token->setText($text);
82 $token
[all...]
/plugin/syntaxhighlightjs/
H A Dhelper.php29 foreach ($tokens as $token) {
31 $token = trim($token, '<>');
34 if (preg_match('/^\d*\.?\d+(%|px|em|ex|pt|pc|cm|mm|in)$/', $token)) {
35 $attr['width'] = $token;
41 if (preg_match('/[^A-Za-z0-9_\-]/', $token)) continue;
43 $classIsInList = in_array(trim($token), $restrictedClasses);
47 $attr['class'] = (isset($attr['class']) ? $attr['class'].' ' : '').$token;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/
H A DRequestContext.php18 * Represents the context of a server request. This includes any controls associated with the request and the token for
33 protected $token;
37 * @param TokenInterface $token
39 public function __construct(ControlBag $controls, TokenInterface $token)
42 $this->token = $token;
56 public function token(): TokenInterface
58 return $this->token;
32 protected $token; global() variable in FreeDSx\\Ldap\\Server\\RequestContext
38 __construct(ControlBag $controls, TokenInterface $token) global() argument
55 public function token() global() function in FreeDSx\\Ldap\\Server\\RequestContext
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DIAMCredentials.php36 private $token; variable in Google\\Auth\\Credentials\\IAMCredentials
40 * @param string $token the IAM token
42 public function __construct($selector, $token) argument
49 if (!is_string($token)) {
56 $this->token = $token;
87 $metadata_copy[self::TOKEN_KEY] = $this->token;
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfToken.php13 * Class representing PDF token object
22 * @param string $token
25 public static function create($token) argument
28 $v->value = $token;
36 * @param mixed $token
40 public static function ensure($token) argument
42 return PdfType::ensureType(self::class, $token, 'Token value expected.');
/plugin/oauth/Service/
H A DAbstractOAuth2Base.php23 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
26 $token = new StdOAuth2Token();
27 $token->setAccessToken($data['access_token']);
31 $token->setLifeTime($data['expires_in']);
34 $token->setEndOfLife(StdOAuth2Token::EOL_NEVER_EXPIRES);
38 $token->setRefreshToken($data['refresh_token']);
42 $token->setExtraParams($data);
44 return $token;
/plugin/struct/meta/
H A DFilterValueListHandler.php12 protected $token = ''; variable in dokuwiki\\plugin\\struct\\meta\\FilterValueListHandler
36 $this->row[$this->current_row] = $this->token;
40 $this->row[$this->current_row] = $this->token;
41 $this->token = '';
56 $this->token .= $match;
68 //add escape character to the token
69 $this->token .= $match[1];
80 $this->token = $match;
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Exception/
H A DSyntaxException.php17 protected $token; variable in Mustache_Exception_SyntaxException
21 * @param array $token
24 public function __construct($msg, array $token, Exception $previous = null) argument
26 $this->token = $token;
39 return $this->token;
/plugin/bez/mdl/
H A DSubscriptionFactory.php10 protected function checkToken($token) { argument
11 $q = "SELECT user_id FROM {$this->get_table_name()} WHERE token=?";
12 $r = $this->model->sqlite->query($q, $token);
16 public function mute($token='') { argument
17 //mute by token
18 if ($token) {
19 $user_id = $this->checkToken($token);
65 $q = "SELECT token FROM {$this->get_table_name()} WHERE user_id=?";
67 $token = $this->model->sqlite->res2single($r);
68 if ($token
[all...]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DLogicalNotToken.php22 private $token; variable in Prophecy\\Argument\\Token\\LogicalNotToken
29 $this->token = $value instanceof TokenInterface? $value : new ExactValueToken($value);
41 return false === $this->token->scoreArgument($argument) ? 4 : false;
51 return $this->token->isLast();
61 return $this->token;
71 return sprintf('not(%s)', $this->token);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Sync/
H A DMockSyncCollection.php21 public $token = null; variable in Sabre\\DAV\\Sync\\MockSyncCollection
35 return $this->token;
41 $this->token++;
42 $this->changeLog[$this->token] = [
123 if (is_null($this->token)) return null;
129 foreach($this->changeLog as $token=>$change) {
131 if ($token > $syncToken) {
160 'syncToken' => $this->token,
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/Selector/
H A DAttribute.php40 * Try to get token in buffer at offset position.
47 if ($token = $this->matchCharacters($buffer, $offset, $this->_tokenChars)) {
48 return $token;
50 if ($token = $this->matchPatterns($buffer, $offset, $this->_tokenPatterns)) {
51 return $token;
57 * Check if token ends status
59 * @param Scanner\Token $token
62 public function isEndToken(Scanner\Token $token): bool { argument
63 return $token->type === Scanner\Token::ATTRIBUTE_SELECTOR_END;
69 * @param Scanner\Token $token
72 getNewStatus(Scanner\\Token $token) global() argument
[all...]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/
H A DScanner.php16 * class does the actual token matching and generation, the scanner handles, to loops and
49 * @param array &$target token target
58 while ($token = $this->_next()) {
59 $target[] = $token;
61 if ($this->_status->isEndToken($token)) {
65 if ($newStatus = $this->_status->getNewStatus($token)) {
84 * Get next token
89 if (($token = $this->_status->getToken($this->_buffer, $this->_offset)) &&
90 $token->length > 0) {
91 $this->_offset += $token
[all...]
/plugin/settingstree/
H A Dscript.js25 …= $(this), opts = $.extend({},opts), pluginname = opts.pluginname, token = opts.token, pending = f…
52 …stree', operation: 'savelevel', pluginname: pluginname, path: path, sectok: token, data: changes },
54 if (r.token) token = r.token;
81 …e', operation: 'exportlevel', pluginname: pluginname, path: path, sectok: token, data: changes, op…
83 if (r.token) token = r.token;
128 …stree', operation: 'loadlevel', pluginname: pluginname, path: id, sectok: token, showtype: _export…
130 if (r.token) token = r.token;
149 …ugin_settingstree', operation: 'show_hierarchy', pluginname: pluginname, key: key, sectok: token },
151 if (r.token) token = r.token;
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DParser.php53 $token = $tokens->current();
56 if ($token === null) {
59 switch ($token[Tokenizer::TYPE]) {
66 'Unexpected closing tag: /' . $token[Tokenizer::NAME]
72 && $result[Tokenizer::NAME] == $token[Tokenizer::NAME]
75 $result[Tokenizer::END] = $token[Tokenizer::INDEX];
84 array_push($stack, $token);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php54 $token = $this->parseRequestTokenResponse($responseBody);
55 $this->storage->storeAccessToken($this->service(), $token);
57 return $token;
77 public function requestAccessToken($token, $verifier, $tokenSecret = null) argument
102 $token = $this->parseAccessTokenResponse($responseBody);
103 $this->storage->storeAccessToken($this->service(), $token);
105 return $token;
109 * Refreshes an OAuth1 access token
110 * @param TokenInterface $token
111 * @return TokenInterface $token
113 refreshAccessToken(TokenInterface $token) global() argument
205 buildAuthorizationHeaderForAPIRequest($method, UriInterface $uri, TokenInterface $token, $bodyParams = null) global() argument
[all...]

12345678910>>...37