Lines Matching defs:New
346 assert(!is_contained(NewValues, nullptr) && "New values must be non-null");
489 void DbgVariableRecord::setAssignId(DIAssignID *New) {
490 resetDebugValue(2, New);
684 void DbgMarker::insertDbgRecord(DbgRecord *New, bool InsertAtHead) {
686 StoredDbgRecords.insert(It, *New);
687 New->setMarker(this);
689 void DbgMarker::insertDbgRecord(DbgRecord *New, DbgRecord *InsertBefore) {
692 StoredDbgRecords.insert(InsertBefore->getIterator(), *New);
693 New->setMarker(this);
695 void DbgMarker::insertDbgRecordAfter(DbgRecord *New, DbgRecord *InsertAfter) {
698 StoredDbgRecords.insert(++(InsertAfter->getIterator()), *New);
699 New->setMarker(this);
739 DbgRecord *New = DR.clone();
740 New->setMarker(this);
741 StoredDbgRecords.insert(Pos, *New);
743 First = New;