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

/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h242 /// the OldChild entry in our children list with NewChild, and updates the
243 /// parent pointer of OldChild to be null and the NewChild to be this loop.
245 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
250 void addChildLoop(LoopT *NewChild) { argument
251 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
252 NewChild->ParentLoop = static_cast<LoopT *>(this);
253 SubLoops.push_back(NewChild);
H A DLoopInfoImpl.h219 /// the OldChild entry in our children list with NewChild, and updates the
220 /// parent pointer of OldChild to be null and the NewChild to be this loop.
224 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) { argument
226 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
230 *I = NewChild;
232 NewChild->ParentLoop = static_cast<LoopT *>(this);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A 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
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1237 TreePatternNode *NewChild = ArgMap[Child->getName()]; local
1238 assert(NewChild && "Couldn't find formal argument!");
1240 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1242 setChild(i, NewChild);
1266 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); local
1269 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1272 setChild(i, NewChild);

Completed in 123 milliseconds