/development/tools/idegen/ |
idegen.sh | 8 idegenjar=`find out -name idegen.jar -follow | grep -v intermediates`
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3baserecognizer.h | 120 ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow); 135 /// follow the one we were looking for, in which case the one we were looking for is 139 (*mismatchIsMissingToken) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, pANTLR3_INT_STREAM input, pANTLR3_BITSET_LIST follow); 145 ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow); 213 /** Pointer to a function that computes the context-sensitive FOLLOW set for the 219 /** Pointer to a function to combine follow bitsets. 231 pANTLR3_BITSET_LIST follow); 237 pANTLR3_BITSET_LIST follow); 243 pANTLR3_BITSET_LIST follow); 332 pANTLR3_BITSET_LIST follow); [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugTreeParser.h | 50 follow:(ANTLRBitSet *)follow;
|
ANTLRTreeParser.h | 60 BitSet:(ANTLRBitSet *)follow; 74 Follow:(ANTLRBitSet *)follow;
|
ANTLRBaseRecognizer.h | 105 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow; 108 - (BOOL) mismatchIsMissingToken:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)follow; 132 Follow:(ANTLRBitSet *)follow; 136 Follow:(ANTLRBitSet *)follow; 142 Follow:(ANTLRBitSet *)follow; [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
BaseRecognizer.pm | 65 Readonly my $usage => 'void match(IntStream input, int ttype, BitSet follow)'; 67 my ($self, $input, $ttype, $follow) = @_; 82 return $self->recover_from_mismatched_token($input, $ttype, $follow); 101 my ($self, $input, $follow) = @_; 103 if (!defined $follow) { 107 if ($follow->member(ANTLR::Runtime::Token->EOR_TOKEN_TYPE)) { 109 $follow = $follow->or($viable_tokens_following_this_rule); 111 $follow->remove(ANTLR::Runtime::Token->EOR_TOKEN_TYPE); 115 if ($follow->member($input->LA(1)) || $follow->member(ANTLR::Runtime::Token->EOR_TOKEN_TYPE)) [all...] |
Parser.pm | 34 my $follow = $arg_ref->{follow};
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
BaseRecognizer.js | 101 * symbols that can follow rule ref.</p> 105 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the 109 match: function(input, ttype, follow) { 121 matchedSymbol = this.recoverFromMismatchedToken(input, ttype, follow); 149 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the 154 mismatchIsMissingToken: function(input, follow) { 155 if ( !follow ) { 156 // we have no information about the follow; we can only consum [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
BaseRecognizer.java | 98 * to the set of symbols that can follow rule ref. 100 public Object match(IntStream input, int ttype, BitSet follow) 115 matchedSymbol = recoverFromMismatchedToken(input, ttype, follow); 130 public boolean mismatchIsMissingToken(IntStream input, BitSet follow) { 131 if ( follow==null ) { 132 // we have no information about the follow; we can only consume 136 // compute what can follow this grammar element reference 137 if ( follow.member(Token.EOR_TOKEN_TYPE) ) { 139 follow = follow.or(viableTokensFollowingThisRule) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeParser.h | 60 BitSet:(ANTLRBitSet *)follow; 74 Follow:(ANTLRBitSet *)follow;
|
ANTLRBaseRecognizer.h | 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow; 116 - (BOOL) mismatchIsMissingToken:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)follow; 140 Follow:(ANTLRBitSet *)follow; 144 Follow:(ANTLRBitSet *)follow; 150 Follow:(ANTLRBitSet *)follow; [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTreeParser.h | 60 BitSet:(ANTLRBitSet *)follow; 74 Follow:(ANTLRBitSet *)follow;
|
ANTLRBaseRecognizer.h | 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow; 116 - (BOOL) mismatchIsMissingToken:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)follow; 140 Follow:(ANTLRBitSet *)follow; 144 Follow:(ANTLRBitSet *)follow; 150 Follow:(ANTLRBitSet *)follow; [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTreeParser.h | 60 BitSet:(ANTLRBitSet *)follow; 74 Follow:(ANTLRBitSet *)follow;
|
ANTLRBaseRecognizer.h | 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow; 116 - (BOOL) mismatchIsMissingToken:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)follow; 140 Follow:(ANTLRBitSet *)follow; 144 Follow:(ANTLRBitSet *)follow; 150 Follow:(ANTLRBitSet *)follow; [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3treeparser.c | 38 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow); 48 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow); 174 mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) 177 recognizer->recoverFromMismatchedToken(recognizer, ttype, follow); 205 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
|
antlr3baserecognizer.c | 54 static void * match (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow); 56 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow); 58 static ANTLR3_BOOLEAN mismatchIsMissingToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow); 64 static void * recoverFromMismatchedToken (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow); 65 static void * recoverFromMismatchedSet (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_BITSET_LIST follow); 66 static ANTLR3_BOOLEAN recoverFromMismatchedElement(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_BITSET_LIST follow); 80 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow); 412 /// symbols that can follow rule ref. 416 ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) 478 matchedSymbol = recognizer->recoverFromMismatchedToken(recognizer, ttype, follow); 1622 pANTLR3_BITSET follow; local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
BaseRecognizer.cs | 128 * to the set of symbols that can follow rule ref. 131 public virtual object Match(IIntStream input, int ttype, BitSet follow) { 144 matchedSymbol = RecoverFromMismatchedToken(input, ttype, follow); 159 public virtual bool MismatchIsMissingToken(IIntStream input, BitSet follow) { 160 if (follow == null) { 161 // we have no information about the follow; we can only consume 165 // compute what can follow this grammar element reference 166 if (follow.Member(TokenTypes.EndOfRule)) { 168 follow = follow.Or(viableTokensFollowingThisRule) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
BaseRecognizer.cs | 138 * to the set of symbols that can follow rule ref. 141 public virtual object Match( IIntStream input, int ttype, BitSet follow ) 157 matchedSymbol = RecoverFromMismatchedToken( input, ttype, follow ); 174 public virtual bool MismatchIsMissingToken( IIntStream input, BitSet follow ) 176 if ( follow == null ) 178 // we have no information about the follow; we can only consume 182 // compute what can follow this grammar element reference 183 if ( follow.Member( TokenTypes.EndOfRule ) ) 186 follow = follow.Or( viableTokensFollowingThisRule ) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeParser.cs | 102 BitSet follow) { 103 object o = base.GetMissingSymbol(input, e, expectedTokenType, follow);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeParser.cs | 110 BitSet follow ) 112 object o = base.GetMissingSymbol( input, e, expectedTokenType, follow );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugTreeParser.java | 87 BitSet follow) 89 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
recognizers.rb | 64 a stack that tracks follow sets for error recovery 382 # the symbol doesn't match, attempt to use the follow-set 383 # data provided by +follow+ to recover from the mismatched 385 def match( type, follow ) 393 return recover_from_mismatched_token( type, follow ) 535 # follow that rule reference on the stack; this amounts to 537 # enclosing rule. This local follow set only includes tokens 546 # can legally follow a call to r *or* any rule that called r. 561 # At each rule invocation, the set of tokens that could follow 563 # follow sets [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
BaseRecognizer.as | 62 * symbols that can follow rule ref. 64 public function matchStream(input:IntStream, ttype:int, follow:BitSet):Object { 77 matchedSymbol = recoverFromMismatchedToken(input, ttype, follow); 92 public function mismatchIsMissingToken(input:IntStream, follow:BitSet):Boolean { 93 if ( follow==null ) { 94 // we have no information about the follow; we can only consume 98 // compute what can follow this grammar element reference 99 if ( follow.member(TokenConstants.EOR_TOKEN_TYPE) ) { 101 follow = follow.or(viableTokensFollowingThisRule) [all...] |
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
recognizers.py | 59 # Track the set of token types that can follow any rule invocation. 197 def match(self, input, ttype, follow): 208 to the set of symbols that can follow rule ref. 221 matchedSymbol = self.recoverFromMismatchedToken(input, ttype, follow) 236 def mismatchIsMissingToken(self, input, follow): 237 if follow is None: 238 # we have no information about the follow; we can only consume 242 # compute what can follow this grammar element reference 243 if EOR_TOKEN_TYPE in follow: 245 follow = follow | viableTokensFollowingThisRul [all...] |