Lines Matching refs:Elements
1645 Subtrees, Elements: IList<IANTLRInterface>;
1651 Elements := Subtrees;
1652 CheckEquals('[foo, big]', TCollectionUtils.ListToString(Elements));
1698 Elements: IList<IANTLRInterface>;
1704 Elements := TList<IANTLRInterface>.Create;
1705 Visitor := TRecordAllElementsVisitor.Create(Elements);
1707 CheckEquals('[B]' ,TCollectionUtils.ListToString(Elements));
1715 Elements: IList<IANTLRInterface>;
1721 Elements := TList<IANTLRInterface>.Create;
1722 Visitor := TRecordAllElementsVisitor.Create(Elements);
1724 CheckEquals('[C]' ,TCollectionUtils.ListToString(Elements));
1877 Elements: IList<IANTLRInterface>;
1883 Elements := TList<IANTLRInterface>.Create;
1884 Visitor := TRecordAllElementsVisitor.Create(Elements);
1886 CheckEquals('[B, B, B]' ,TCollectionUtils.ListToString(Elements));
1894 Elements: IList<IANTLRInterface>;
1900 Elements := TList<IANTLRInterface>.Create;
1901 Visitor := TRecordAllElementsVisitor.Create(Elements);
1903 CheckEquals('[A, A]' ,TCollectionUtils.ListToString(Elements));
1911 Elements: IList<IANTLRInterface>;
1917 Elements := TList<IANTLRInterface>.Create;
1918 Visitor := TTest1ContextVisitor.Create(Adaptor, Elements);
1920 CheckEquals('[B@A[0], B@A[1], B@A[2]]', TCollectionUtils.ListToString(Elements));
1928 Elements: IList<IANTLRInterface>;
1934 Elements := TList<IANTLRInterface>.Create;
1935 Visitor := TTest1ContextVisitor.Create(Adaptor, Elements);
1937 CheckEquals('[A@nil[0], A@A[1]]', TCollectionUtils.ListToString(Elements));
2007 Elements: IList<IANTLRInterface>;
2013 Elements := TList<IANTLRInterface>.Create;
2014 Visitor := TRecordAllElementsVisitor.Create(Elements);
2016 CheckEquals('[A]', TCollectionUtils.ListToString(Elements));
2024 Elements: IList<IANTLRInterface>;
2030 Elements := TList<IANTLRInterface>.Create;
2031 Visitor := TTest1ContextVisitor.Create(Adaptor, Elements);
2033 CheckEquals('[A@A[2], A@D[0]]', TCollectionUtils.ListToString(Elements));
2041 Elements: IList<IANTLRInterface>;
2047 Elements := TList<IANTLRInterface>.Create;
2048 Visitor := TTest2ContextVisitor.Create(Adaptor, Elements);
2050 CheckEquals('[foo@A[2]foo&bar, big@D[0]big&dog]', TCollectionUtils.ListToString(Elements));