Searched defs:ApplyOnce (Results 1 - 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeFilter.cs98 public virtual void ApplyOnce( object t, Action whichRule ) method in class:Antlr.Runtime.Tree.TreeFilter
123 ApplyOnce( o, Topdown );
128 ApplyOnce( o, Bottomup );
H A DTreeRewriter.cs54 public virtual object ApplyOnce(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) { method in class:Antlr.Runtime.Tree.TreeRewriter
89 object u = ApplyOnce(t, whichRule);
98 t = v.Visit(t, (o) => ApplyOnce(o, topdown_func), (o) => ApplyRepeatedly(o, bottomup_func));
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeFilter.cs53 public virtual void ApplyOnce( object t, Action whichRule ) method in class:Antlr.Runtime.Tree.TreeFilter
78 ApplyOnce( o, Topdown );
83 ApplyOnce( o, Bottomup );
H A DTreeRewriter.cs62 public virtual object ApplyOnce( object t, Func<IAstRuleReturnScope> whichRule ) method in class:Antlr.Runtime.Tree.TreeRewriter
99 object u = ApplyOnce( t, whichRule );
115 t = v.Visit( t, ( o ) => ApplyOnce( o, topdown_func ), ( o ) => ApplyRepeatedly( o, bottomup_func ) );

Completed in 772 milliseconds