Home
last modified time | relevance | path

Searched refs:whichRule (Results 1 – 11 of 11) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeRewriter.cs54 … 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()
DTreeFilter.cs98 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/
DTreeRewriter.cs62 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()
DTreeFilter.cs53 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/
DTreeRewriter.java53 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()
DTreeFilter.java95 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/
DANTLRTreeRewriter.h60 - (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/
DANTLRTreeRewriter.h60 - (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/
DANTLRTreeRewriter.h60 - (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/
DANTLRTreeRewriter.h62 - (id) applyOnce:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule;
63 - (id) applyRepeatedly:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule;
DANTLRTreeRewriter.m129 - (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];