Home
last modified time | relevance | path

Searched refs:CreateDeepCopy (Results 1 – 7 of 7) sorted by relevance

/external/libchrome/base/
Dvalues_unittest.cc445 std::unique_ptr<DictionaryValue> copy_dict = original_dict.CreateDeepCopy(); in TEST()
571 std::unique_ptr<DictionaryValue> copy = dv.CreateDeepCopy(); in TEST()
578 std::unique_ptr<Value> list_copy(list->CreateDeepCopy()); in TEST()
589 copy = dv.CreateDeepCopy(); in TEST()
658 std::unique_ptr<Value> copy_dict = original_dict.CreateDeepCopy(); in TEST()
659 std::unique_ptr<Value> copy_null = original_null->CreateDeepCopy(); in TEST()
660 std::unique_ptr<Value> copy_bool = original_bool->CreateDeepCopy(); in TEST()
661 std::unique_ptr<Value> copy_int = original_int->CreateDeepCopy(); in TEST()
662 std::unique_ptr<Value> copy_double = original_double->CreateDeepCopy(); in TEST()
663 std::unique_ptr<Value> copy_string = original_string->CreateDeepCopy(); in TEST()
[all …]
Dvalues.cc66 return node.CreateDeepCopy(); in CopyWithoutEmptyChildren()
131 std::unique_ptr<Value> Value::CreateDeepCopy() const { in CreateDeepCopy() function in base::Value
818 current_entry.second->CreateDeepCopy()); in DeepCopy()
824 std::unique_ptr<DictionaryValue> DictionaryValue::CreateDeepCopy() const { in CreateDeepCopy() function in base::DictionaryValue
1129 result->Append(entry->CreateDeepCopy()); in DeepCopy()
1134 std::unique_ptr<ListValue> ListValue::CreateDeepCopy() const { in CreateDeepCopy() function in base::ListValue
Dvalues.h102 std::unique_ptr<Value> CreateDeepCopy() const;
380 std::unique_ptr<DictionaryValue> CreateDeepCopy() const;
508 std::unique_ptr<ListValue> CreateDeepCopy() const;
/external/libchrome/base/json/
Djson_parser.cc51 std::unique_ptr<DictionaryValue> copy(CreateDeepCopy()); in Swap()
78 *out = out_owned->CreateDeepCopy(); in RemoveWithoutPathExpansion()
103 std::unique_ptr<ListValue> copy(CreateDeepCopy()); in Swap()
126 *out = out_owned->CreateDeepCopy(); in Remove()
269 return root->CreateDeepCopy(); in Parse()
/external/libchrome/base/trace_event/
Dmemory_allocator_dump_unittest.cc72 return out_value ? out_value->CreateDeepCopy() : std::unique_ptr<Value>(); in CheckAttribute()
Dtrace_event_unittest.cc277 std::unique_ptr<ListValue> old_trace_parsed(trace_parsed_.CreateDeepCopy()); in DropTracedMetadataRecords()
285 trace_parsed_.Append(value->CreateDeepCopy()); in DropTracedMetadataRecords()
293 trace_parsed_.Append(value->CreateDeepCopy()); in DropTracedMetadataRecords()
/external/libchrome/base/test/
Dtrace_event_analyzer.cc116 arg_values[it.key()] = it.value().CreateDeepCopy(); in SetFromJSON()
150 *arg = it->second->CreateDeepCopy(); in GetArgAsValue()