Home
last modified time | relevance | path

Searched refs:NewChild (Results 1 – 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tree.Tests.pas411 T, NewChild: ICommonTree;
417 NewChild := TCommonTree.Create(TCommonToken.Create(99, 'x'));
418 T.ReplaceChildren(0, 2, NewChild);
443 T, NewChild: ICommonTree;
449 NewChild := TCommonTree.Create(TCommonToken.Create(99, 'x'));
450 T.ReplaceChildren(0, 0, NewChild);
457 T, NewChild: ICommonTree;
463 NewChild := TCommonTree.Create(TCommonToken.Create(99, 'x'));
464 T.ReplaceChildren(2, 2, NewChild);
471 T, NewChild: ICommonTree;
[all …]
/external/llvm/include/llvm/Analysis/
DLoopInfo.h275 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
280 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument
281 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in addChildLoop()
282 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop()
283 SubLoops.push_back(NewChild); in addChildLoop()
DLoopInfoImpl.h211 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) { in replaceChildLoopWith() argument
213 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in replaceChildLoopWith()
217 *I = NewChild; in replaceChildLoopWith()
219 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith()
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp1387 TreePatternNode *NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local
1388 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments()
1390 NewChild->getPredicateFns() == Child->getPredicateFns()) && in SubstituteFormalArguments()
1392 setChild(i, NewChild); in SubstituteFormalArguments()
1416 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); in InlinePatternFragments() local
1419 NewChild->getPredicateFns() == Child->getPredicateFns()) && in InlinePatternFragments()
1422 setChild(i, NewChild); in InlinePatternFragments()