Home
last modified time | relevance | path

Searched refs:token (Results 151 – 175 of 922) sorted by relevance

12345678910>>...37

/plugin/authgoogle/google/
H A DGoogle_Client.php318 * @param string|null $token The token (access token or a refresh token) that should be revoked.
321 public function revokeToken($token = null) { argument
322 self::$auth->revokeToken($token);
329 * @param string|null $token The token (id_token) that should be verified.
333 public function verifyIdToken($token = null) { argument
334 return self::$auth->verifyIdToken($token);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessVerifications/
H A DGenerateVerificationTokenResponse.php28 public function setToken(VerificationToken $token) argument
30 $this->token = $token;
37 return $this->token;
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/TokenParser/
H A DTrans.php17 public function parse(Twig_Token $token) argument
19 $lineno = $token->getLine();
54 public function decideForFork(Twig_Token $token) argument
56 return $token->test(array('plural', 'notes', 'endtrans'));
59 public function decideForEnd(Twig_Token $token) argument
61 return $token->test('endtrans');
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DTokenizer.php25 * A token stack.
52 * Clear the token stack.
60 * Push a token onto the stack.
62 * @param string $token
64 public function pushStack($token) argument
66 $this->stack[] = $token;
70 * Get next token.
76 $token = \array_pop($this->stack);
77 if ($token !== null) {
78 return $token;
[all...]
/plugin/findologicxmlexport/vendor/hoa/math/
H A DArithmetic.pp44 %token bracket_ \(
45 %token _bracket \)
46 %token comma ,
47 %token number (0|[1-9]\d*)(\.\d+)?([eE][\+\-]?\d+)?
48 %token plus \+
49 %token minus \-|−
50 %token times \*|×
51 %token div /|÷
52 %token constant [A-Z_]+[A-Z0-9_]*
53 %token id \w+
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DDiffer.php240 foreach ($start as $token) {
241 $diff[] = array($token, 0 /* OLD */);
247 foreach ($common as $token) {
252 while (($toToken = \reset($to)) !== $token) {
256 $diff[] = array($token, 0 /* OLD */);
262 while (($token = \array_shift($from)) !== null) {
263 $diff[] = array($token, 2 /* REMOVED */);
266 while (($token = \array_shift($to)) !== null) {
267 $diff[] = array($token, 1 /* ADDED */);
270 foreach ($end as $token) {
[all …]
/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DParser.php160 $token = $this->stream->next();
161 $rv[] = new TextNode($token->getValue(), $token->getLine());
165 $token = $this->stream->next();
168 $rv[] = new PrintNode($expr, $token->getLine());
173 $token = $this->getCurrentToken();
175 if (Token::NAME_TYPE !== $token->getType()) {
179 if (null !== $test && \call_user_func($test, $token)) {
191 $subparser = $this->handlers->getTokenParser($token->getValue());
194 …$e = new SyntaxError(sprintf('Unexpected "%s" tag', $token->getValue()), $token->getLine(), $this-…
200 …$e = new SyntaxError(sprintf('Unknown "%s" tag.', $token->getValue()), $token->getLine(), $this->s…
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D47.47.js1token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.bracket"},{open:"(",close:")",token:…
H A D67.67.js.map1token: 'delimiter.bracket', open: '{', close: '}' },\n { token: 'delimiter.array', open: '[…
H A D52.52.js.map1token: 'delimiter.parenthesis' },\n { open: '{', close: '}', token: 'delimiter.curly' },\n …
H A D64.64.js1token:"delimiter.parenthesis"},{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",to…
H A D55.55.js1token:"string.quote",bracket:"@open",next:"@rawstring"}],[/\bs"""/,{token:"string.quote",bracket:"…
H A D11.11.js1token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"…
H A D38.38.js1token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"…
H A D37.37.js1token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"…
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/
H A DArgumentsWildcard.php58 foreach ($this->tokens as $i => $token) {
60 if (1 >= $score = $token->scoreArgument($argument)) {
66 if (true === $token->isLast()) {
86 $this->string = implode(', ', array_map(function ($token) {
87 return (string) $token;
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DBlockTokenParser.php34 public function parse(Token $token) argument
36 $lineno = $token->getLine();
48 if ($token = $stream->nextIf(Token::NAME_TYPE)) {
49 $value = $token->getValue();
69 public function decideBlockEnd(Token $token) argument
71 return $token->test('endblock');
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DMailchimp.php50 return new Uri('https://login.mailchimp.com/oauth2/token');
65 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
68 // Create token object.
69 $token = new StdOAuth2Token($data['access_token']);
72 $this->setBaseApiUri($token);
75 $token->setEndOfLife(StdOAuth2Token::EOL_NEVER_EXPIRES);
77 return $token;
95 * @param StdOAuth2Token $token
97 protected function setBaseApiUri(StdOAuth2Token $token) argument
100 $endpoint = 'https://login.mailchimp.com/oauth2/metadata?oauth_token='. $token
[all...]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DTokenizer.php163 $token = array(
180 $token[self::NAME],
181 $token[self::LINE]
187 $lastName = $token[self::NAME];
189 $token[self::NAME] = trim(substr($lastName, 0, -1));
193 $token[self::NAME],
194 $token[self::LINE]
205 $this->tokens[] = $token;
277 $token = array(
285 throw new Mustache_Exception_SyntaxException($e->getMessage(), $token);
[all …]
/plugin/box2/
H A Dsyntax.php197 foreach ($tokens as $token) {
198 if (preg_match('/^\d*\.?\d+(%|px|em|ex|pt|cm|mm|pi|in)$/', $token)) {
199 $styles['width'] = $token;
206 )$/x', $token)) {
207 if (preg_match('/^#[A-Za-z0-9_-]+$/', $token)) {
208 $styles['id'] = substr($token, 1);
212 $styles['colour'][] = $token;
216 …_match('/^(margin|padding)(-(left|right|top|bottom))?:\d+(%|px|em|ex|pt|cm|mm|pi|in)$/', $token)) {
217 $styles['spacing'][] = $token;
221 if (preg_match('/[^A-Za-z0-9_-]/',$token)) continue;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/
H A DREADME.md1 …ravis-ci.org/sebastianbergmann/php-token-stream.svg?branch=master)](https://travis-ci.org/sebastia…
3 # php-token-stream
9 composer require phpunit/php-token-stream
13 composer require --dev phpunit/php-token-stream
/plugin/structautolink/
H A Drenderer.php60 foreach ($tokens as $token) {
61 if ($token['pos'] > $start) {
62 parent::cdata(substr($text, $start, $token['pos'] - $start));
64 $this->internallink($this->getConf('ns') . ':' . $token['id'], $token['term']);
65 $start = $token['pos'] + $token['len'];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GamesConfiguration/
H A DAchievementConfiguration.php49 public $token; variable in Google\\Service\\GamesConfiguration\\AchievementConfiguration
152 public function setToken($token) argument
154 $this->token = $token;
161 return $this->token;
H A DLeaderboardConfiguration.php49 public $token; variable in Google\\Service\\GamesConfiguration\\LeaderboardConfiguration
152 public function setToken($token) argument
154 $this->token = $token;
161 return $this->token;

12345678910>>...37