Home
last modified time | relevance | path

Searched refs:DeepCopy (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueArray.cpp311 OptionValueArray::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValueArray
312 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
319 value = value->DeepCopy(copy_sp); in DeepCopy()
H A DOptionValueDictionary.cpp335 OptionValueDictionary::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValueDictionary
336 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
343 value.second = value.second->DeepCopy(copy_sp); in DeepCopy()
H A DOptionValueProperties.cpp598 auto copy_sp = global_props_sp->DeepCopy(global_props_sp->GetParent()); in CreateLocalCopy()
603 OptionValueProperties::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValueProperties
604 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
614 auto value_sp = property.GetValue()->DeepCopy(copy_sp); in DeepCopy()
H A DOptionValue.cpp570 OptionValueSP OptionValue::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValue
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h49 DeepCopy(const lldb::OptionValueSP &new_parent) const override;
H A DOptionValueArray.h44 DeepCopy(const lldb::OptionValueSP &new_parent) const override;
H A DOptionValue.h103 DeepCopy(const lldb::OptionValueSP &new_parent) const;
H A DOptionValueProperties.h41 DeepCopy(const lldb::OptionValueSP &new_parent) const override;
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/tests/unit/
H A Dfunction_call_trie_test.cpp218 TEST(FunctionCallTrieTest, DeepCopy) { in TEST() argument