Searched refs:ToStringTree (Results 1 – 11 of 11) sorted by relevance
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
D | ITreeFixture.cs | 281 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceWithOneChildren() 296 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceInMiddle() 311 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceAtLeft() 326 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceAtRight() 345 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceOneWithTwoAtLeft() 364 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceOneWithTwoAtRight() 383 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceOneWithTwoInMiddle() 399 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceTwoWithOneAtLeft() 415 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceTwoWithOneAtRight() 431 Assert.AreEqual(expected, t.ToStringTree()); in testReplaceAllWithOne() [all …]
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/ |
D | Program.cs | 42 Console.WriteLine("Original tree: " + t.ToStringTree()); in _Main() 50 Console.WriteLine("Simplified tree: " + t.ToStringTree()); in _Main()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeRewriter.cs | 72 Console.Out.WriteLine(((CommonTree)t).ToStringTree() + " -> " + in ApplyOnce() 73 ((CommonTree)(object)r.Tree).ToStringTree()); in ApplyOnce()
|
D | ITree.cs | 157 string ToStringTree(); in ToStringTree() method
|
D | BaseTree.cs | 415 public virtual string ToStringTree() { in ToStringTree() method in Antlr.Runtime.Tree.BaseTree 430 buf.Append(t.ToStringTree()); in ToStringTree()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeRewriter.cs | 139 string oldMessage = old != null ? old.ToStringTree() : "??"; in ReportTransformation() 140 string newMessage = @new != null ? @new.ToStringTree() : "??"; in ReportTransformation()
|
D | ITree.cs | 169 string ToStringTree(); in ToStringTree() method
|
D | BaseTree.cs | 539 public virtual string ToStringTree() in ToStringTree() method in Antlr.Runtime.Tree.BaseTree 559 buf.Append( t.ToStringTree() ); in ToStringTree()
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 419 CheckEquals(T.ToStringTree, '(a x)'); 437 CheckEquals(T.ToStringTree, '(a x y)'); 451 CheckEquals(T.ToStringTree, '(a x c d)'); 465 CheckEquals(T.ToStringTree, '(a b c x)'); 479 CheckEquals(T.ToStringTree, '(a b x d)'); 497 CheckEquals(T.ToStringTree, '(a x y c d)'); 515 CheckEquals(T.ToStringTree, '(a b c x y)'); 533 CheckEquals(T.ToStringTree, '(a b x y d)'); 547 CheckEquals(T.ToStringTree, '(a x d)'); 561 CheckEquals(T.ToStringTree, '(a b x)'); [all …]
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tree.pas | 486 function ToStringTree: String; 568 function ToStringTree: String; in ToStringTree() function 1149 function ToStringTree: String; virtual; 2412 function TBaseTree.ToStringTree: String; in ToStringTree() function 2436 Buf.Append(T.ToStringTree);
|
/external/antlr/runtime/Delphi/ |
D | README.TXT | 208 WriteLn('tree=' + (R.Tree as ITree).ToStringTree);
|