Searched refs:follow (Results 1 - 25 of 98) sorted by relevance

1234

/external/chromium_org/android_webview/tools/
H A Dfind_files.pl20 push @find_args, qw(-follow -type f -print);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h120 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);
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);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDebugTreeParser.h50 follow:(ANTLRBitSet *)follow;
H A DANTLRTreeParser.h60 BitSet:(ANTLRBitSet *)follow;
74 Follow:(ANTLRBitSet *)follow;
H A DANTLRBaseRecognizer.h105 - (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;
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBaseRecognizer.pm65 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
[all...]
H A DParser.pm34 my $follow = $arg_ref->{follow};
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js101 * 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; w
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBaseRecognizer.java98 * to the set of symbols that can follow rule ref.
100 public Object match(IntStream input, int ttype, BitSet follow) argument
115 matchedSymbol = recoverFromMismatchedToken(input, ttype, follow);
130 public boolean mismatchIsMissingToken(IntStream input, BitSet follow) { argument
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
588 recoverFromMismatchedToken(IntStream input, int ttype, BitSet follow) argument
622 recoverFromMismatchedSet(IntStream input, RecognitionException e, BitSet follow) argument
667 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeParser.h60 BitSet:(ANTLRBitSet *)follow;
74 Follow:(ANTLRBitSet *)follow;
H A DANTLRBaseRecognizer.h113 - (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;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeParser.h60 BitSet:(ANTLRBitSet *)follow;
74 Follow:(ANTLRBitSet *)follow;
H A DANTLRBaseRecognizer.h113 - (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;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeParser.h60 BitSet:(ANTLRBitSet *)follow;
74 Follow:(ANTLRBitSet *)follow;
H A DANTLRBaseRecognizer.h113 - (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;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c38 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) argument
177 recognizer->recoverFromMismatchedToken(recognizer, ttype, follow);
205 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
204 getMissingSymbol(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) argument
H A Dantlr3baserecognizer.c54 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);
415 match( pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
552 mismatchIsMissingToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow) argument
642 mismatch(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
1432 recoverFromMismatchedToken(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
1555 recoverFromMismatchedSet(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_BITSET_LIST follow) argument
1622 pANTLR3_BITSET follow; local
2165 getMissingSymbol(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs128 * to the set of symbols that can follow rule ref.
131 public virtual object Match(IIntStream input, int ttype, BitSet follow) { argument
144 matchedSymbol = RecoverFromMismatchedToken(input, ttype, follow);
159 public virtual bool MismatchIsMissingToken(IIntStream input, BitSet follow) { argument
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
616 RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) argument
648 RecoverFromMismatchedSet(IIntStream input, RecognitionException e, BitSet follow) argument
697 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs138 * 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
[all...]
/external/ltrace/
H A Doptions.h45 int follow; /* trace child processes */ member in struct:options_t
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeParser.cs102 BitSet follow) {
103 object o = base.GetMissingSymbol(input, e, expectedTokenType, follow);
99 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeParser.cs110 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/
H A DDebugTreeParser.java87 BitSet follow)
89 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow);
84 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb64 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 set
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as62 * 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
[all...]

Completed in 1187 milliseconds

1234