Lines Matching refs:Child
131 procedure AddChild(const T, Child: IANTLRInterface);
291 procedure SetChild(const T: IANTLRInterface; const I: Integer; const Child: IANTLRInterface);
1277 procedure AddChild(const T, Child: IANTLRInterface); virtual;
1296 …procedure SetChild(const T: IANTLRInterface; const I: Integer; const Child: IANTLRInterface); virt…
2089 function VisitChild(const Child: Integer): IANTLRInterface; virtual;
2215 Child: ITree;
2220 Child := GetChild(C);
2221 Child.ChildIndex := C;
2222 Child.Parent := Self;
2286 Child: IBaseTree;
2312 Child := NewChildren[J];
2313 FChildren[I] := Child;
2314 Child.Parent := Self;
2315 Child.ChildIndex := I;
2366 Child: ICommonTree;
2379 Child := GetChild(C) as ICommonTree;
2380 Child.SanityCheckParentAndChildIndexes(Self, C);
2678 procedure TBaseTreeAdaptor.AddChild(const T, Child: IANTLRInterface);
2680 if Assigned(T) and Assigned(Child) then
2681 (T as ITree).AddChild(Child as ITree);
2766 Child, NewSubTree: IANTLRInterface;
2779 Child := GetChild(T, I);
2780 NewSubTree := DupTree(Child, T);
2863 const Child: IANTLRInterface);
2865 (T as ITree).SetChild(I, Child as ITree);
4330 Subtree, Child: IANTLRInterface;
4353 Child := ParseNode;
4354 if (Child = nil) then
4356 FAdaptor.AddChild(Result, Child);
4894 const Child: Integer): IANTLRInterface; in VisitChild()
4899 FIndexStack.Push(Child);
4900 if (Child = 0) and (not FAdaptor.IsNil(FCurrentNode)) then
4903 FCurrentNode := FAdaptor.GetChild(FCurrentNode, Child);