Home
last modified time | relevance | path

Searched refs:token (Results 1 – 25 of 922) sorted by relevance

12345678910>>...37

/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D57.57.js1token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.bracket"},{open:"(",close:")",token:…
H A D42.42.js1token:"delimiter.parenthesis"},{open:"`(",close:")",token:"delimiter.parenthesis"},{open:"%(",clos…
H A D67.67.js1token:"delimiter.bracket",open:"{",close:"}"},{token:"delimiter.array",open:"[",close:"]"},{token:…
H A D16.16.js1token:"delimiter.bracket"},{open:"[",close:"]",token:"delimiter.bracket"},{open:"(",close:")",toke…
/plugin/codemirror/dist/modes/
H A Dfactor.min.js1token:"comment"},{regex:/"""/,token:"string",next:"string3"},{regex:/(STRING:)(\s)/,token:["keywor…
H A Dnsis.min.js1token:"number"},{regex:/"(?:[^\\"]|\\.)*"?/,token:"string"},{regex:/'(?:[^\\']|\\.)*'?/,token:"str…
H A Dlivescript.min.js1token}}a.next();return"error"}if(a.match(g=f[c])){if(g.regex&&a.match(g.regex)){b.next=g.next;retu… property in AnonymousFunction1e0d314e0100.e
H A Ddockerfile.min.js1token:"comment"},{regex:c,token:[null,"keyword"],sol:true,next:"from"},{regex:k,token:[null,"keywo…
H A Drust.min.js1token:"string",next:"string"},{regex:/b?r"/,token:"string",next:"string_raw"},{regex:/b?r#+"/,toke…
H A Dhandlebars.min.js1token:"tag"},{regex:/\{\{!--/,push:"dash_comment",token:"comment"},{regex:/\{\{!/,push:"comment",t…
/plugin/scrape/HTMLPurifier/Lexer/
H A DPH5P.php
/plugin/adhoctags/
H A Dhelper.php141 foreach ($tokens as $token) {
144 if (preg_match('/^:([a-z\-]+)/', $token)) {
145 $attr['lang'] = strtolower(trim($token,':'));
150 if (preg_match('/^#([A-Za-z]\w+)/', $token)) {
151 $attr['id'] = trim($token,'#');
156 if (preg_match('/^\"(.*)\"$/', $token)) {
157 $attr['title'] = trim($token,'"');
162 if (preg_match('/^\[([^\]]+)\]$/', $token)) {
164 $cAttr = explode('=', trim($token,'[]'), 2);
165 //dbg('$token
[all...]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DParser.php78 $token = array_shift($tokens);
95 switch ($token[Mustache_Tokenizer::TYPE]) {
113 $token[Mustache_Tokenizer::LINE]
141 $nodes[] = $token;
161 $token[Mustache_Tokenizer::NAME] = '$' . $token[Mustache_Tokenizer::NAME];
162 $nodes[] = $token;
172 $nodes[] = $token;
176 $nodes[] = $token;
255 * @param array $token
259 private function tokenIsWhitespace(array $token) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/
H A DInterfaceTest.php30 foreach ($ts as $token) {
31 if ($token instanceof PHP_Token_CLASS) {
32 $this->class = $token;
34 $this->interfaces[$i] = $token;
117 foreach ($tokenStream as $token) {
119 $package = $token->getPackage();
142 foreach ($tokenStream as $token) {
144 $package = $token->getPackage();
164 foreach ($this->interfaces as $token) {
165 $package = $token->getPackage();
[all …]
H A DNamespaceTest.php24 foreach ($tokenStream as $token) {
25 if ($token instanceof PHP_Token_NAMESPACE) {
34 foreach ($tokenStream as $token) {
35 if ($token instanceof PHP_Token_NAMESPACE) {
36 $this->assertSame(2, $token->getLine());
44 foreach ($tokenStream as $token) {
45 if ($token instanceof PHP_Token_NAMESPACE) {
53 foreach ($tokenStream as $token) {
54 if ($token instanceof PHP_Token_NAMESPACE) {
55 $this->assertSame(2, $token->getLine());
[all …]
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DGrammar.pp49 %token negative_class_ \[\^
50 %token class_ \[
51 %token _class \]
52 %token range \-
82 %token capturing_ \(
83 %token _capturing \)
88 %token zero_or_one \?
91 %token zero_or_more \*
94 %token one_or_more \+
104 %token alternation \|
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php130 foreach ($this as $token) {
131 $buffer .= $token;
161 $token = $tokens[$i];
164 if (is_array($token)) {
166 $text = $token[1];
178 $text = $token;
306 switch (get_class($token)) {
311 $this->includes[$token->getType()][] = $token->getName();
360 foreach ($this->tokens as $token) {
361 switch (get_class($token)) {
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DTokenParser.php109 $isNameToken = $token[0] === T_STRING || $token[0] === T_NS_SEPARATOR;
111 $class .= $token[1];
112 $alias = $token[1];
114 $alias .= $token[1];
118 } else if ($token === ',') {
123 } else if ($token === ';') {
126 } else if ($token === '{' ) {
129 } else if ($token === '}' ) {
150 if ($token[0] === T_USE) {
175 … while (($token = $this->next()) && ($token[0] === T_STRING || $token[0] === T_NS_SEPARATOR)) {
[all …]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DSequence.php25 * Parse the token stream for a simple selector sequence,
33 $token = $this->lookahead(
44 while (isset($token)) {
45 if ($selector = $this->createSelector($token)) {
46 $this->read($token->type);
49 switch ($token->type) {
57 $sequence->simples[] = $this->createPseudoElement($token);
58 $this->read($token->type);
61 $this->read($token->type);
66 $this->read($token
96 createSelector(Scanner\\Token $token) global() argument
117 createCombinator(Scanner\\Token $token, Ast\\Selector\\Sequence $sequence) global() argument
136 createPseudoElement($token) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidPublisher/Resource/
H A DPurchasesSubscriptions.php42 * @param string $token The token provided to the user's device when the
61 * @param string $token The token provided to the user's device when the
65 public function cancel($packageName, $subscriptionId, $token, $optParams = []) argument
67 … $params = ['packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token];
79 * @param string $token The token provided to the user's device when the
99 * @param string $token The token provided to the user's device when the
104 public function get($packageName, $subscriptionId, $token, $optParams = []) argument
119 * @param string $token The token provided to the user's device when the
123 public function refund($packageName, $subscriptionId, $token, $optParams = []) argument
138 * @param string $token The token provided to the user's device when the
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php146 … return $token->test(Token::OPERATOR_TYPE) && isset($this->unaryOperators[$token->getValue()]);
180 $node = $this->getFunctionNode($token->getValue(), $token->getLine());
182 $node = new NameExpression($token->getValue(), $token->getLine());
189 $node = new ConstantExpression($token->getValue(), $token->getLine());
201 $node = new NameExpression($token->getValue(), $token->getLine());
248 $nodes[] = new ConstantExpression($token->getValue(), $token->getLine());
316 …if (($token = $stream->nextIf(Token::STRING_TYPE)) || ($token = $stream->nextIf(Token::NAME_TYPE))…
317 $key = new ConstantExpression($token->getValue(), $token->getLine());
341 if ('.' == $token->getValue() || '[' == $token->getValue()) {
407 $token = $stream->next();
[all …]
/plugin/authgoogle/google/auth/
H A DGoogle_OAuth2.php33 public $token; variable in Google_OAuth2
156 * @param string $token
160 $token = json_decode($token, true);
161 if ($token == null) {
167 $this->token = $token;
280 if (! isset($token['access_token']) || ! isset($token['expires_in'])) {
284 $this->token['access_token'] = $token['access_token'];
285 $this->token['expires_in'] = $token['expires_in'];
300 if (!$token) {
301 $token = $this->token['access_token'];
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Type/
H A Dgrammar.pp3 %token parenthesis_ <
4 %token _parenthesis >
5 %token empty_string ""|''
6 %token number (\+|\-)?(0|[1-9]\d*)(\.\d+)?
7 %token null null
8 %token comma ,
11 %token quote_ " -> quoted_string
12 %token quoted_string:quoted_string [^"]+
13 %token quoted_string:_quote " -> default
16 %token apostrophed_string:apostrophed_string [^']+
[all …]
/plugin/autotweet/
H A Dtwitteroauth.php65 $this->token = NULL;
81 $token = OAuthUtil::parse_parameters($request);
82 $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
83 return $token;
92 if (is_array($token)) {
93 $token = $token['oauth_token'];
117 $token = OAuthUtil::parse_parameters($request);
118 $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
119 return $token;
138 $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
[all …]
/plugin/sequencediagram/bower_components/snap.svg/doc/css/
H A Dprism.css51 .token.comment,
52 .token.prolog,
53 .token.doctype,
54 .token.cdata {
66 .token.tag,
67 .token.boolean,
79 .token.string,
81 .token.entity,
82 .token.url,
92 .token.regex,
[all …]

12345678910>>...37