Searched refs:NewChild (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | LoopInfo.h | 353 LoopT *NewChild) { in replaceChildLoopWith() argument 355 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); in replaceChildLoopWith() 359 *I = NewChild; in replaceChildLoopWith() 361 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith() 367 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument 368 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); in addChildLoop() 369 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop() 370 SubLoops.push_back(NewChild); in addChildLoop() 898 void MoveSiblingLoopInto(LoopT *NewChild, in MoveSiblingLoopInto() argument 900 LoopT *OldParent = NewChild->getParentLoop(); in MoveSiblingLoopInto() [all …]
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 411 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/ |
D | LoopInfo.h | 262 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild); 266 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument 267 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in addChildLoop() 268 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop() 269 SubLoops.push_back(NewChild); in addChildLoop()
|
D | LoopInfoImpl.h | 211 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/swiftshader/third_party/LLVM/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 1162 TreePatternNode *NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local 1163 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments() 1165 NewChild->getPredicateFns() == Child->getPredicateFns()) && in SubstituteFormalArguments() 1167 setChild(i, NewChild); in SubstituteFormalArguments() 1187 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); in InlinePatternFragments() local 1190 NewChild->getPredicateFns() == Child->getPredicateFns()) && in InlinePatternFragments() 1193 setChild(i, NewChild); in InlinePatternFragments()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 1387 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()
|