Searched refs:ToStringTree (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
H A 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 …]
|
/aosp_15_r20/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
H A 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 …]
|
/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
H A D | TreeRewriter.cs | 72 Console.Out.WriteLine(((CommonTree)t).ToStringTree() + " -> " + in ApplyOnce() 73 ((CommonTree)(object)r.Tree).ToStringTree()); in ApplyOnce()
|
H A D | BaseTree.cs | 415 public virtual string ToStringTree() { in ToStringTree() method in Antlr.Runtime.Tree.BaseTree 430 buf.Append(t.ToStringTree()); in ToStringTree()
|
H A D | ITree.cs | 157 string ToStringTree(); in ToStringTree() method
|
/aosp_15_r20/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
H A D | Antlr.Runtime.Tree.pas | 486 function ToStringTree: String; in ToStringTree() function 568 function ToStringTree: String; in ToStringTree() function 1149 function ToStringTree: String; virtual; in ToStringTree() function 2412 function TBaseTree.ToStringTree: String; in ToStringTree() function 2436 Buf.Append(T.ToStringTree);
|
/aosp_15_r20/external/antlr/runtime/Delphi/ |
H A D | README.TXT | 208 WriteLn('tree=' + (R.Tree as ITree).ToStringTree);
|