Home
last modified time | relevance | path

Searched refs:token_type (Results 201 – 225 of 4373) sorted by relevance

12345678910>>...175

/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/ValuesAndExpressions/
H A DProhibitLeadingZeros.pm22 my $token_type = $token->{type};
42 $token_type = $token->{type};
44 if ($token_type == SEMI_COLON) {
48 if ($token_type == COMMA) {
68 $token_type = $token->{type};
70 if ($token_type == SEMI_COLON) {
74 if ($token_type == COMMA) {
95 if (!$is_strict && $token_type == KEY) {
104 $token_type = $token->{type};
110 if ($token_type == COMMA) {
[all …]
H A DProhibitMixedBooleanOperators.pm26 $token_type = $token->{type};
28 if ($token_type == SEMI_COLON) {
44 elsif ($token_type == LEFT_PAREN) {
47 elsif ($token_type == RIGHT_PAREN) {
62 $token_type == AND ||
63 $token_type == OR ||
64 $token_type == NOT
75 $token_type == ALPHABET_AND ||
76 $token_type == ALPHABET_OR ||
77 $token_type == ALPHABET_NOT ||
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/pass/if-2/
H A Dast.snap20 token_type:
32 token_type:
49 token_type:
61 token_type:
75 token_type:
87 token_type:
116 token_type:
180 token_type:
192 token_type:
221 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/roblox_cases/fail/parser/param_variadic_types/
H A Dtokens.snap14 token_type:
25 token_type:
36 token_type:
47 token_type:
58 token_type:
69 token_type:
80 token_type:
91 token_type:
102 token_type:
113 token_type:
[all …]
/dports/games/gnuchess/gnuchess-6.2.9/src/adapter/
H A Dpgn.cpp152 if (pgn->token_type != ']') { in pgn_next_game()
338 pgn->token_type = TOKEN_ERROR; in pgn_read_token()
350 pgn->token_type = TOKEN_EOF; in pgn_read_token()
362 pgn->token_type = TOKEN_RESULT; in pgn_read_token()
374 pgn->token_type = TOKEN_NAG; in pgn_read_token()
380 pgn->token_type = TOKEN_NAG; in pgn_read_token()
388 pgn->token_type = TOKEN_NAG; in pgn_read_token()
401 pgn->token_type = TOKEN_NAG; in pgn_read_token()
407 pgn->token_type = TOKEN_NAG; in pgn_read_token()
415 pgn->token_type = TOKEN_NAG; in pgn_read_token()
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/fail/parser/numeric-for-5/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
114 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/pass/anonymous-functions-2/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
114 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/fail/parser/local-function-5/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
114 token_type:
[all …]
/dports/cad/repsnapper/repsnapper-2.5a4/libraries/amf/amftools-code/include/muparser/
H A DmuParserBase.h85 typedef ParserToken<value_type, string_type> token_type; typedef
246 void ApplyRemainingOprt(ParserStack<token_type> &a_stOpt,
248 void ApplyBinOprt(ParserStack<token_type> &a_stOpt,
251 void ApplyIfElse(ParserStack<token_type> &a_stOpt,
254 void ApplyFunc(ParserStack<token_type> &a_stOpt,
255 ParserStack<token_type> &a_stVal,
258 token_type ApplyNumFunc(const token_type &a_FunTok,
261 token_type ApplyBulkFunc(const token_type &a_FunTok,
264 token_type ApplyStrFunc(const token_type &a_FunTok,
267 int GetOprtPrecedence(const token_type &a_Tok) const;
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/email/
H A D_header_value_parser.pyi52 token_type: str = ...
55 token_type: str = ...
58 token_type: str = ...
61 token_type: str = ...
64 token_type: str = ...
67 token_type: str = ...
71 token_type: str = ...
77 token_type: str = ...
86 token_type: str = ...
91 token_type: str = ...
[all …]
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/email/
H A D_header_value_parser.pyi52 token_type: str = ...
55 token_type: str = ...
58 token_type: str = ...
61 token_type: str = ...
64 token_type: str = ...
67 token_type: str = ...
71 token_type: str = ...
77 token_type: str = ...
86 token_type: str = ...
91 token_type: str = ...
[all …]
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/Variables/
H A DProhibitConditionalDeclarations.pm19 my $token_type = $token->{type};
21 if ($token_type == VAR_DECL || $token_type == OUR_DECL) {
29 $token_type = $token->{type};
31 if ($token_type == RIGHT_PAREN) {
35 $token_type == IF_STATEMENT ||
36 $token_type == UNLESS_STATEMENT ||
37 $token_type == WHILE_STATEMENT ||
38 $token_type == FOR_STATEMENT ||
39 $token_type == FOREACH_STATEMENT
53 if ($_is_before_right_paren && $token_type == LEFT_BRACE) {
H A DRequireInitializationForLocalVars.pm16 for (my $i = 0, my $token_type; my $token = $tokens->[$i]; $i++) {
17 $token_type = $token->{type};
19 if ($token_type == LOCAL_DECL) {
21 $token_type = $token->{type};
23 if ($token_type == LEFT_PAREN) {
26 $token_type = $token->{type};
28 if ($token_type == LEFT_PAREN) {
31 elsif ($token_type == RIGHT_PAREN) {
38 $token_type = $token->{type};
40 if ($token_type != ASSIGN) {
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/roblox_cases/fail/parser/named_function_arg_types/
H A Dtokens.snap14 token_type:
25 token_type:
36 token_type:
47 token_type:
58 token_type:
69 token_type:
80 token_type:
91 token_type:
102 token_type:
113 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/fail/parser/table-5/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
114 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/fail/parser/table-6/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
114 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/pass/call-2/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
71 token_type:
82 token_type:
93 token_type:
104 token_type:
115 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/pass/paren-expressions/
H A Dast.snap20 token_type:
32 token_type:
48 token_type:
60 token_type:
74 token_type:
86 token_type:
105 token_type:
117 token_type:
132 token_type:
144 token_type:
[all …]
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/ControlStructures/
H A DProhibitDeepNests.pm20 for (my $i = 0, my $token_type, my $token_data; my $token = $tokens->[$i]; $i++) {
21 $token_type = $token->{type};
24 if ($token_type == LEFT_BRACE) {
44 if ($token_type == RIGHT_BRACE) {
50 $token_type == VAR ||
51 $token_type == GLOBAL_VAR ||
52 $token_type == FUNCTION_DECL ||
53 ($token_type == BUILTIN_FUNC && $token_data eq 'eval')
70 $token_type = $token->{type};
72 if ($token_type == LEFT_BRACE) {
[all …]
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/BuiltinFunctions/
H A DProhibitVoidMap.pm24 my $token_type = $token->{type};
26 if ($token_type == BUILTIN_FUNC) {
56 elsif ($token_type == ASSIGN) {
60 $token_type == IF_STATEMENT ||
61 $token_type == FOR_STATEMENT ||
62 $token_type == WHILE_STATEMENT ||
63 $token_type == UNLESS_STATEMENT
68 if ($token_type == LEFT_BRACE) {
71 elsif ($token_type == RIGHT_BRACE) {
79 elsif ($token_type == SEMI_COLON) {
[all …]
/dports/lang/nyan/nyan-3c263e2/nyan/
H A Dtoken.cpp16 token_type type) in Token()
24 token_type type, const std::string &value) in Token()
33 type{token_type::INVALID} {} in Token()
61 case token_type::ENDFILE: in is_endmarker()
62 case token_type::ENDLINE: in is_endmarker()
65 case token_type::INVALID: in is_endmarker()
76 case token_type::FLOAT: in is_content()
77 case token_type::ID: in is_content()
78 case token_type::INT: in is_content()
79 case token_type::STRING: in is_content()
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/pass/strings/
H A Dast.snap21 token_type:
41 token_type:
55 token_type:
67 token_type:
104 token_type:
124 token_type:
138 token_type:
187 token_type:
207 token_type:
221 token_type:
[all …]
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/InputOutput/
H A DProhibitBacktickOperators.pm25 my $token_type = $token->{type};
28 if ($token_type == BUILTIN_FUNC || $token_type == KEY) {
39 if ($token_type == LEFT_PAREN) {
42 my $token_type = $token->{type};
43 if ($token_type == LEFT_PAREN) {
46 elsif ($token_type == RIGHT_PAREN) {
56 if ($token_type == ASSIGN) {
61 if ($token_type == SEMI_COLON) {
66 if ($token_type == EXEC_STRING || $token_type == REG_EXEC) {
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/pass/index-2/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
115 token_type:
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/full_moon-0.13.1/tests/cases/fail/parser/local-function-6/
H A Dtokens.snap15 token_type:
26 token_type:
37 token_type:
48 token_type:
59 token_type:
70 token_type:
81 token_type:
92 token_type:
103 token_type:
114 token_type:
[all …]

12345678910>>...175