OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EOR_TOKEN_TYPE
(Results
1 - 18
of
18
) sorted by null
/external/antlr/runtime/Python/antlr3/
constants.py
45
EOR_TOKEN_TYPE
= 1
recognizers.py
38
EOR_TOKEN_TYPE
, INVALID_TOKEN_TYPE
243
if
EOR_TOKEN_TYPE
in follow:
249
follow = follow - set([
EOR_TOKEN_TYPE
])
254
if input.LA(1) in follow or
EOR_TOKEN_TYPE
in follow:
655
if
EOR_TOKEN_TYPE
in localFollowSet:
659
followSet.remove(
EOR_TOKEN_TYPE
)
[
all
...]
/external/antlr/runtime/Python3/antlr3/
constants.py
47
EOR_TOKEN_TYPE
= 1
recognizers.py
37
HIDDEN_CHANNEL, EOF,
EOR_TOKEN_TYPE
, INVALID_TOKEN_TYPE
242
if
EOR_TOKEN_TYPE
in follow:
248
follow -= {
EOR_TOKEN_TYPE
}
253
if input.LA(1) in follow or
EOR_TOKEN_TYPE
in follow:
647
if
EOR_TOKEN_TYPE
in localFollowSet:
651
followSet.remove(
EOR_TOKEN_TYPE
)
[
all
...]
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
Token.pm
12
Readonly my $
EOR_TOKEN_TYPE
=> 1;
13
sub
EOR_TOKEN_TYPE
{ $
EOR_TOKEN_TYPE
}
BaseRecognizer.pm
107
if ($follow->member(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
)) {
111
$follow->remove(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
);
115
if ($follow->member($input->LA(1)) || $follow->member(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
)) {
313
if ($exact && $local_follow_set->member(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
)) {
317
#$follow_set->remove(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
);
388
if ($follow->member(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
)) {
391
$follow->remove(ANTLR::Runtime::Token->
EOR_TOKEN_TYPE
);
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
Token.java
31
public static final int
EOR_TOKEN_TYPE
= 1;
BaseRecognizer.java
137
if ( follow.member(Token.
EOR_TOKEN_TYPE
) ) {
141
follow.remove(Token.
EOR_TOKEN_TYPE
);
154
if ( follow.member(input.LA(1)) || follow.member(Token.
EOR_TOKEN_TYPE
) ) {
544
if ( localFollowSet.member(Token.
EOR_TOKEN_TYPE
) ) {
548
followSet.remove(Token.
EOR_TOKEN_TYPE
);
/external/antlr/tool/src/main/java/org/antlr/analysis/
LL1Analyzer.java
143
* We record with
EOR_TOKEN_TYPE
if we hit the end of a rule so we can
177
if ( grammar.type!=Grammar.LEXER && look.member(Label.
EOR_TOKEN_TYPE
) ) {
181
f.remove(Label.
EOR_TOKEN_TYPE
);
209
return new LookaheadSet(Label.
EOR_TOKEN_TYPE
);
251
if ( grammar.type!=Grammar.LEXER && tset.member(Label.
EOR_TOKEN_TYPE
) ) {
261
//tset.remove(Label.
EOR_TOKEN_TYPE
);
265
fset.remove(Label.
EOR_TOKEN_TYPE
);
Label.java
104
public static final int
EOR_TOKEN_TYPE
=
105
org.antlr.runtime.Token.
EOR_TOKEN_TYPE
;
/external/antlr/runtime/Cpp/include/
antlr3commontoken.hpp
68
,
EOR_TOKEN_TYPE
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js
161
if ( follow.member(org.antlr.runtime.Token.
EOR_TOKEN_TYPE
) ) {
165
follow.remove(org.antlr.runtime.Token.
EOR_TOKEN_TYPE
);
176
follow.member(org.antlr.runtime.Token.
EOR_TOKEN_TYPE
) )
599
if ( localFollowSet.member(org.antlr.runtime.Token.
EOR_TOKEN_TYPE
) )
604
followSet.remove(org.antlr.runtime.Token.
EOR_TOKEN_TYPE
);
[
all
...]
Token.js
12
EOR_TOKEN_TYPE
: 1,
/external/antlr/runtime/Ruby/lib/antlr3/
recognizers.rb
655
if follow.include?(
EOR_TOKEN_TYPE
)
657
follow = ( follow | viable_tokens ) - Set[
EOR_TOKEN_TYPE
]
694
if follow.include?(
EOR_TOKEN_TYPE
)
698
follow.delete(
EOR_TOKEN_TYPE
) unless @state.following.empty?
700
if follow.include?( @input.peek ) or follow.include?(
EOR_TOKEN_TYPE
)
784
if local_follow_set.include?(
EOR_TOKEN_TYPE
)
785
follow_set.delete(
EOR_TOKEN_TYPE
) if index > 0
[
all
...]
constants.rb
76
EOR_TOKEN_TYPE
= 1
/external/antlr/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java
136
typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.
EOR_TOKEN_TYPE
-1, "<EOR>");
145
tokenIDToTypeMap.put("<EOR>", Utils.integer(Label.
EOR_TOKEN_TYPE
));
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as
99
if ( follow.member(TokenConstants.
EOR_TOKEN_TYPE
) ) {
103
follow.remove(TokenConstants.
EOR_TOKEN_TYPE
);
115
if ( follow.member(input.LA(1)) || follow.member(TokenConstants.
EOR_TOKEN_TYPE
) ) {
512
if ( localFollowSet.member(TokenConstants.
EOR_TOKEN_TYPE
) ) {
516
followSet.remove(TokenConstants.
EOR_TOKEN_TYPE
);
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas
[
all
...]
Completed in 2713 milliseconds