Home
last modified time | relevance | path

Searched refs:OldRoot (Results 1 – 3 of 3) sorted by relevance

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tree.Tests.pas253 OldRoot, NewRoot: ICommonTree;
258 OldRoot := TCommonTree.Create(IToken(nil));
259 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(101)));
260 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(102)));
261 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(103)));
263 Adaptor.BecomeRoot(NewRoot, OldRoot);
269 OldRoot, NewRoot: ICommonTree;
274 OldRoot := TCommonTree.Create(TCommonToken.Create(101));
275 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(102)));
276 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(103)));
[all …]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tree.pas162 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload; in BecomeRoot()
209 …function BecomeRoot(const NewRoot: IToken; const OldRoot: IANTLRInterface): IANTLRInterface; overl… in BecomeRoot()
1278 … function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload; virtual; in BecomeRoot()
1281 …function BecomeRoot(const NewRoot: IToken; const OldRoot: IANTLRInterface): IANTLRInterface; overl… in BecomeRoot()
2685 OldRoot: IANTLRInterface): IANTLRInterface; in BecomeRoot()
2691 OldRootTree := OldRoot as ITree;
2692 if (OldRoot = nil) then
2715 const OldRoot: IANTLRInterface): IANTLRInterface;
2717 Result := BecomeRoot(CreateNode(NewRoot), OldRoot);
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp166 SDValue OldRoot = DAG.getRoot(); in Run() local
167 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?"); in Run()
168 DAG.setRoot(LegalizedNodes[OldRoot]); in Run()