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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp516 auto NewChild = createDataNode(MajorVersion, MinorVersion, Characteristics, local
518 auto ElementInserted = IDChildren.emplace(ID, std::move(NewChild));
527 auto NewChild = createIDNode(); local
528 WindowsResourceParser::TreeNode &Node = *NewChild;
529 IDChildren.emplace(ID, std::move(NewChild));
542 auto NewChild = createStringNode(StringTable.size()); local
544 WindowsResourceParser::TreeNode &Node = *NewChild;
545 StringChildren.emplace(NameString, std::move(NewChild));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfo.h368 /// our children list with NewChild, and updates the parent pointer of
369 /// OldChild to be null and the NewChild to be this loop.
371 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
375 void addChildLoop(LoopT *NewChild) { argument
377 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
378 NewChild->ParentLoop = static_cast<LoopT *>(this);
379 SubLoops.push_back(NewChild);
H A DLoopInfoImpl.h261 /// the OldChild entry in our children list with NewChild, and updates the
262 /// parent pointer of OldChild to be null and the NewChild to be this loop.
266 LoopT *NewChild) {
269 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
272 *I = NewChild;
274 NewChild->ParentLoop = static_cast<LoopT *>(this);
265 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) argument
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1963 TreePatternNodePtr NewChild = ArgMap[Child->getName()]; local
1964 assert(NewChild && "Couldn't find formal argument!");
1966 NewChild->getPredicateCalls() == Child->getPredicateCalls()) &&
1968 setChild(i, std::move(NewChild));
2011 for (auto NewChild : ChildAlternatives[i])
2013 NewChild->getPredicateCalls() == Child->getPredicateCalls()) &&

Completed in 118 milliseconds