Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/Interpreter/
H A DTestOptionValue.cpp29 TEST(OptionValueString, DeepCopy) { in TEST() argument
37 auto copy_sp = str.DeepCopy(nullptr); in TEST()
51 TEST(OptionValueArgs, DeepCopy) { in TEST() argument
59 auto copy_sp = args.DeepCopy(nullptr); in TEST()
123 TEST(TestProperties, DeepCopy) { in TEST() argument
133 auto copy_sp = props_sp->DeepCopy(nullptr); in TEST()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValueArray.cpp303 OptionValueArray::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValueArray
304 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
311 value = value->DeepCopy(copy_sp); in DeepCopy()
H A DOptionValueDictionary.cpp326 OptionValueDictionary::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValueDictionary
327 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
334 value.second = value.second->DeepCopy(copy_sp); in DeepCopy()
H A DOptionValueProperties.cpp573 auto copy_sp = global_props_sp->DeepCopy(global_props_sp->GetParent()); in CreateLocalCopy()
578 OptionValueProperties::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy() function in OptionValueProperties
579 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
589 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
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h47 DeepCopy(const lldb::OptionValueSP &new_parent) const override;
H A DOptionValueArray.h42 DeepCopy(const lldb::OptionValueSP &new_parent) const override;
H A DOptionValueProperties.h41 DeepCopy(const lldb::OptionValueSP &new_parent) const override;
H A DOptionValue.h92 DeepCopy(const lldb::OptionValueSP &new_parent) const;
/llvm-project-15.0.7/compiler-rt/lib/xray/tests/unit/
H A Dfunction_call_trie_test.cpp218 TEST(FunctionCallTrieTest, DeepCopy) { in TEST() argument