Searched refs:whichRule (Results 1 – 10 of 10) sorted by relevance
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeRewriter.cs | 54 … public virtual object ApplyOnce(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) { in ApplyOnce() argument 64 IAstRuleReturnScope<TTree> r = whichRule(); in ApplyOnce() 86 …ublic virtual object ApplyRepeatedly(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) { in ApplyRepeatedly() argument 89 object u = ApplyOnce(t, whichRule); in ApplyRepeatedly()
|
D | TreeFilter.cs | 98 public virtual void ApplyOnce( object t, Action whichRule ) in ApplyOnce() argument 110 whichRule(); in ApplyOnce()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeRewriter.cs | 62 public virtual object ApplyOnce( object t, Func<IAstRuleReturnScope> whichRule ) in ApplyOnce() argument 74 IAstRuleReturnScope r = whichRule(); in ApplyOnce() 94 public virtual object ApplyRepeatedly( object t, Func<IAstRuleReturnScope> whichRule ) in ApplyRepeatedly() argument 99 object u = ApplyOnce( t, whichRule ); in ApplyRepeatedly()
|
D | TreeFilter.cs | 53 public virtual void ApplyOnce( object t, Action whichRule ) in ApplyOnce() argument 65 whichRule(); in ApplyOnce()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeRewriter.java | 53 public Object applyOnce(Object t, fptr whichRule) { in applyOnce() argument 61 TreeRuleReturnScope r = (TreeRuleReturnScope)whichRule.rule(); in applyOnce() 76 public Object applyRepeatedly(Object t, fptr whichRule) { in applyRepeatedly() argument 79 Object u = applyOnce(t, whichRule); in applyRepeatedly()
|
D | TreeFilter.java | 95 public void applyOnce(Object t, fptr whichRule) { in applyOnce() argument 103 whichRule.rule(); in applyOnce()
|
/external/antlr/runtime/ObjC/Framework/ |
D | TreeFilter.h | 154 SEL whichRule; variable 158 @property (assign) SEL whichRule; 184 - (void) applyOnce:(id<BaseTree>)t rule:(fptr *)whichRule;
|
D | TreeFilter.m | 100 public void applyOnce(Object t, fptr whichRule) { 108 whichRule.rule(); 159 whichRule = aRule; 167 if ( [treeFilter respondsToSelector:whichRule] ) { 168 [treeFilter performSelector:whichRule]; 173 @synthesize whichRule; 202 - (void) applyOnce:(id<BaseTree>)t rule:(fptr *)whichRule 211 [whichRule rule];
|
D | TreeRewriter.h | 62 - (id) applyOnce:(CommonTree *)t Rule:(ANTLRfptr *)whichRule; 63 - (id) applyRepeatedly:(CommonTree *)t Rule:(ANTLRfptr *)whichRule;
|
D | TreeRewriter.m | 129 - (id) applyOnce:(CommonTree *)t Rule:(ANTLRfptr *)whichRule 138 TreeRuleReturnScope *r = [(ANTLRfptr *)whichRule rule]; 157 - (id) applyRepeatedly:(CommonTree *)t Rule:(ANTLRfptr *)whichRule 161 TreeRewriter *u = [self applyOnce:t Rule:whichRule];
|