OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:followSet
(Results
1 - 8
of
8
) sorted by null
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java
362
BitSet
followSet
= computeErrorRecoverySet();
364
consumeUntil(input,
followSet
);
534
BitSet
followSet
= new BitSet();
541
followSet
.orInPlace(localFollowSet);
548
followSet
.remove(Token.EOR_TOKEN_TYPE);
556
return
followSet
;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js
404
var
followSet
= this.computeErrorRecoverySet();
406
this.consumeUntil(input,
followSet
);
593
followSet
= new org.antlr.runtime.BitSet();
596
followSet
.orInPlace(localFollowSet);
604
followSet
.remove(org.antlr.runtime.Token.EOR_TOKEN_TYPE);
612
return
followSet
;
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs
387
BitSet
followSet
= ComputeErrorRecoverySet();
389
ConsumeUntil(input,
followSet
);
563
BitSet
followSet
= new BitSet();
570
followSet
.OrInPlace(localFollowSet);
577
followSet
.Remove(TokenTypes.EndOfRule);
584
return
followSet
;
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs
455
BitSet
followSet
= ComputeErrorRecoverySet();
457
ConsumeUntil( input,
followSet
);
636
BitSet
followSet
= new BitSet();
644
followSet
.OrInPlace( localFollowSet );
654
followSet
.Remove( TokenTypes.EndOfRule );
663
return
followSet
;
[
all
...]
/external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c
944
/// Compute the current
followset
for the input stream.
949
pANTLR3_BITSET
followSet
;
956
followSet
= antlr3BitsetNew(0);
965
followSet
->borInPlace(
followSet
, localFollowSet);
976
followSet
->remove(
followSet
, ANTLR3_EOR_TOKEN_TYPE);
[
all
...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py
469
followSet
= self.computeErrorRecoverySet()
472
self.consumeUntil(input,
followSet
)
650
followSet
= set()
652
followSet
|= localFollowSet
659
followSet
.remove(EOR_TOKEN_TYPE)
665
return
followSet
[
all
...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as
338
var
followSet
:BitSet = computeErrorRecoverySet();
340
consumeUntil(input,
followSet
);
506
var
followSet
:BitSet = new BitSet();
509
followSet
.orInPlace(localFollowSet);
516
followSet
.remove(TokenConstants.EOR_TOKEN_TYPE);
524
return
followSet
;
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
Completed in 514 milliseconds