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

/openbsd-current/gnu/llvm/llvm/lib/Object/
H A DWindowsResource.cpp514 auto NewChild = createDataNode(MajorVersion, MinorVersion, Characteristics, local
516 auto ElementInserted = IDChildren.emplace(ID, std::move(NewChild));
525 auto NewChild = createIDNode(); local
526 WindowsResourceParser::TreeNode &Node = *NewChild;
527 IDChildren.emplace(ID, std::move(NewChild));
540 auto NewChild = createStringNode(StringTable.size()); local
542 WindowsResourceParser::TreeNode &Node = *NewChild;
543 StringChildren.emplace(NameString, std::move(NewChild));
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopInfo.h405 /// our children list with NewChild, and updates the parent pointer of
406 /// OldChild to be null and the NewChild to be this loop.
408 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
412 void addChildLoop(LoopT *NewChild) { argument
414 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
415 NewChild->ParentLoop = static_cast<LoopT *>(this);
416 SubLoops.push_back(NewChild);
H A DLoopInfoImpl.h284 /// the OldChild entry in our children list with NewChild, and updates the
285 /// parent pointer of OldChild to be null and the NewChild to be this loop.
289 LoopT *NewChild) {
292 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
295 *I = NewChild;
297 NewChild->ParentLoop = static_cast<LoopT *>(this);
288 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) argument
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp2070 TreePatternNodePtr NewChild = ArgMap[Child->getName()]; local
2071 assert(NewChild && "Couldn't find formal argument!");
2073 NewChild->getPredicateCalls() == Child->getPredicateCalls()) &&
2075 setChild(i, std::move(NewChild));
2120 [&](const TreePatternNodePtr &NewChild) {
2121 return NewChild->getPredicateCalls() ==

Completed in 203 milliseconds