Searched refs:copy_sp (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueArray.cpp312 auto copy_sp = OptionValue::DeepCopy(new_parent); local
313 // copy_sp->GetAsArray cannot be used here as it doesn't work for derived
315 auto *array_value_ptr = static_cast<OptionValueArray *>(copy_sp.get());
319 value = value->DeepCopy(copy_sp);
321 return copy_sp;
H A DOptionValueProperties.cpp598 auto copy_sp = global_props_sp->DeepCopy(global_props_sp->GetParent()); local
599 return std::static_pointer_cast<OptionValueProperties>(copy_sp);
604 auto copy_sp = OptionValue::DeepCopy(new_parent); local
605 // copy_sp->GetAsProperties cannot be used here as it doesn't work for derived
607 auto *props_value_ptr = static_cast<OptionValueProperties *>(copy_sp.get());
614 auto value_sp = property.GetValue()->DeepCopy(copy_sp);
618 return copy_sp;

Completed in 209 milliseconds