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);
653 void DbgMarker::insertDbgRecord(DbgRecord *New, bool InsertAtHead) {
655 StoredDbgRecords.insert(It, *New);
656 New->setMarker(this);
658 void DbgMarker::insertDbgRecord(DbgRecord *New, DbgRecord *InsertBefore) {
661 StoredDbgRecords.insert(InsertBefore->getIterator(), *New);
662 New->setMarker(this);
664 void DbgMarker::insertDbgRecordAfter(DbgRecord *New, DbgRecord *InsertAfter) {
667 StoredDbgRecords.insert(++(InsertAfter->getIterator()), *New);
668 New->setMarker(this);
708 DbgRecord *New = DR.clone();
709 New->setMarker(this);
710 StoredDbgRecords.insert(Pos, *New);
712 First = New;