Searched refs:whichRule (Results 1 – 11 of 11) sorted by relevance
/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/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/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRTreeRewriter.h | 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRTreeRewriter.h | 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRTreeRewriter.h | 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTreeRewriter.h | 62 - (id) applyOnce:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule; 63 - (id) applyRepeatedly:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule;
|
D | ANTLRTreeRewriter.m | 129 - (id) applyOnce:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule 138 ANTLRTreeRuleReturnScope *r = [(ANTLRfptr *)whichRule rule]; 157 - (id) applyRepeatedly:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule 161 ANTLRTreeRewriter *u = [self applyOnce:t Rule:whichRule];
|