Home
last modified time | relevance | path

Searched refs:ToStringTree (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DITreeFixture.cs281 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 DAntlr.Runtime.Tree.Tests.pas419 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 DTreeRewriter.cs72 Console.Out.WriteLine(((CommonTree)t).ToStringTree() + " -> " + in ApplyOnce()
73 ((CommonTree)(object)r.Tree).ToStringTree()); in ApplyOnce()
H A DBaseTree.cs415 public virtual string ToStringTree() { in ToStringTree() method in Antlr.Runtime.Tree.BaseTree
430 buf.Append(t.ToStringTree()); in ToStringTree()
H A DITree.cs157 string ToStringTree(); in ToStringTree() method
/aosp_15_r20/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas486 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 DREADME.TXT208 WriteLn('tree=' + (R.Tree as ITree).ToStringTree);