Home
last modified time | relevance | path

Searched refs:SEMI_COLON (Results 1 – 25 of 167) sorted by relevance

1234567

/dports/www/p5-Bigtop/Bigtop-0.38/lib/Bigtop/
H A Dbigtop.grammar45 | keyword[ 'config' ] arg_element SEMI_COLON {
57 backend_statement : IDENT arg_element SEMI_COLON {
87 app_statement : keyword[ 'app' ] arg_list(?) SEMI_COLON {
95 string SEMI_COLON {
167 string SEMI_COLON {
174 | keyword['controller'] arg_list(?) SEMI_COLON {
181 controller_config_statement : IDENT arg_list SEMI_COLON {
204 method_statement : keyword['method'] arg_list SEMI_COLON {
247 sequence_statement : IDENT arg_list SEMI_COLON {
337 app_config_statement : IDENT arg_list SEMI_COLON {
[all …]
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/ValuesAndExpressions/
H A DProhibitCommaSeparatedStatements.pm40 elsif ($token_type == SEMI_COLON) {
91 if ($token_type == SEMI_COLON) {
109 elsif ($token_type == SEMI_COLON) {
130 if ($token_type == SEMI_COLON) {
168 elsif ($token_type == SEMI_COLON) {
H A DProhibitLeadingZeros.pm44 if ($token_type == SEMI_COLON) {
70 if ($token_type == SEMI_COLON) {
106 if ($token_type == SEMI_COLON) {
H A DRequireConstantVersion.pm41 if ($token_type == SEMI_COLON) {
93 elsif ($token_type == SEMI_COLON) {
106 if ($token_type == SEMI_COLON) {
H A DProhibitMagicNumbers.pm105 if ($token_type == SEMI_COLON) {
125 if ($token_type == SEMI_COLON) {
154 last if $token->{type} == SEMI_COLON;
183 elsif ($token_type == SEMI_COLON) {
226 if ($token_type == SEMI_COLON || $token_type == LEFT_BRACE) {
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/RegularExpressions/
H A DRequireDotMatchAnything.pm38 … $next_token_type == SEMI_COLON || # when any regex options don't exist
71 if ($token_type == SEMI_COLON) {
101 if ($token_type == SEMI_COLON) {
128 if ($token_type == SEMI_COLON) {
H A DRequireLineBoundaryMatching.pm38 … $next_token_type == SEMI_COLON || # when any regex options don't exist
71 if ($token_type == SEMI_COLON) {
101 if ($token_type == SEMI_COLON) {
128 if ($token_type == SEMI_COLON) {
H A DRequireExtendedFormatting.pm42 … $next_token_type == SEMI_COLON || # when any regex options don't exist
75 if ($token_type == SEMI_COLON) {
112 if ($token_type == SEMI_COLON) {
139 if ($token_type == SEMI_COLON) {
H A DProhibitCaptureWithoutTest.pm67 if ($token_type == SEMI_COLON) {
155 elsif ($token_type == SEMI_COLON) {
186 if ($token_type == SEMI_COLON) {
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/ErrorHandling/
H A DRequireCheckingReturnValueOfEval.pm97 $token_type == SEMI_COLON ||
168 $token == SEMI_COLON ||
195 $token == SEMI_COLON ||
221 elsif ($token_type == SEMI_COLON) {
245 elsif ($token_type == SEMI_COLON || !$tokens->[$i+1]) {
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/Subroutines/
H A DProhibitUnusedPrivateSubroutines.pm68 elsif ($token_type == SEMI_COLON) {
95 elsif ($token_type == SEMI_COLON) {
102 elsif ($token_type == SEMI_COLON) {
121 elsif ($token_type == SEMI_COLON) {
H A DProtectPrivateSubs.pm77 if ($token_type == SEMI_COLON) {
105 elsif ($token_type == SEMI_COLON) {
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/Variables/
H A DProhibitPackageVars.pm166 elsif ($token_type == SEMI_COLON) {
203 if ($token_type == ASSIGN || $token_type == SEMI_COLON) {
240 elsif ($token_type == SEMI_COLON) { # XXX skip to the edge
277 elsif ($token_type == SEMI_COLON) {
H A DProhibitConditionalDeclarations.pm58 last if $token->{type} == SEMI_COLON;
63 last if $token->{type} == SEMI_COLON;
H A DProhibitAugmentedAssignmentInDeclaration.pm19 SEMI_COLON => Compiler::Lexer::TokenType::T_SemiColon,
50 elsif ($token->{type} == ASSIGN || $token->{type} == SEMI_COLON) {
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/Modules/
H A DRequireEndWithOne.pm42 $extra_before_token->{type} == SEMI_COLON ||
46 $last_token_type == SEMI_COLON &&
/dports/devel/anjuta/anjuta-3.34.0/plugins/mk-project/
H A Dmk-parser.h58 SEMI_COLON = 268, enumerator
95 #define SEMI_COLON 268 macro
H A Dmk-parser.y44 %token SEMI_COLON ';'
212 | depend_list SEMI_COLON command_line EOL {
486 SEMI_COLON
498 | SEMI_COLON
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/ControlStructures/
H A DProhibitPostfixControls.pm69 if ($token_type == SEMI_COLON || $token_type == LEFT_BRACE || $token_type == RIGHT_BRACE) {
103 $token_type == SEMI_COLON ||
H A DProhibitUnreachableCode.pm91 if ($token_type == SEMI_COLON) {
128 if ($token_type == SEMI_COLON) {
/dports/textproc/p5-Perl-Lint/Perl-Lint-0.25/lib/Perl/Lint/Policy/TestingAndDebugging/
H A DProhibitProlongedStrictureOverride.pm50 elsif ($token_type == SEMI_COLON && $no_strict) {
84 elsif ($token_type == SEMI_COLON && $no_strict) {
H A DRequireTestLabels.pm55 $tokens->[$i+1]->{type} == SEMI_COLON ||
129 $token_type == SEMI_COLON &&
/dports/devel/anjuta/anjuta-3.34.0/plugins/am-project/
H A Dam-parser.h58 SEMI_COLON = 268, enumerator
118 #define SEMI_COLON 268 macro
/dports/editors/libreoffice/libreoffice-7.2.6.2/shell/source/backends/wininetbe/
H A Dwininetbackend.cxx38 #define SEMI_COLON ';' macro
184 aReverseList.insert( 0, sal_Unicode( SEMI_COLON ) ); in WinInetBackend()
196 valueNoProxy_.Value <<= aProxyBypassList.replace( SPACE, SEMI_COLON ); in WinInetBackend()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/shell/source/backends/wininetbe/
H A Dwininetbackend.cxx37 #define SEMI_COLON ';' macro
188 aReverseList.insert( 0, sal_Unicode( SEMI_COLON ) ); in WinInetBackend()
200 valueNoProxy_.Value <<= aProxyBypassList.replace( SPACE, SEMI_COLON ); in WinInetBackend()

1234567