Lines Matching refs:c0
80 CommonTree c0, c1, c2; in testList()
81 r0.AddChild(c0 = new CommonTree(new CommonToken(101))); in testList()
87 Assert.AreEqual(r0, c0.Parent); in testList()
88 Assert.AreEqual(0, c0.ChildIndex); in testList()
104 CommonTree c0, c1, c2; in testList2()
105 r0.AddChild(c0 = new CommonTree(new CommonToken(101))); in testList2()
114 Assert.AreEqual(root, c0.Parent); in testList2()
115 Assert.AreEqual(0, c0.ChildIndex); in testList2()
116 Assert.AreEqual(root, c0.Parent); in testList2()
118 Assert.AreEqual(root, c0.Parent); in testList2()
132 CommonTree c0, c1, c2; in testAddListToExistChildren()
133 r0.AddChild(c0 = new CommonTree(new CommonToken(101))); in testAddListToExistChildren()
142 Assert.AreEqual(root, c0.Parent); in testAddListToExistChildren()
143 Assert.AreEqual(1, c0.ChildIndex); in testAddListToExistChildren()
144 Assert.AreEqual(root, c0.Parent); in testAddListToExistChildren()
146 Assert.AreEqual(root, c0.Parent); in testAddListToExistChildren()
275 CommonTree c0 = new CommonTree(new CommonToken(99, "b")); in testReplaceWithOneChildren()
276 t.AddChild(c0); in testReplaceWithOneChildren()