Home | History | Annotate | Download | only in base

Lines Matching defs:move

76   Value value(std::move(str));
239 // Group of tests for the move constructors and move-assigmnent.
242 Value moved_true_value(std::move(true_value));
247 Value moved_false_value(std::move(false_value));
264 Value moved_value(std::move(value));
277 Value moved_value(std::move(value));
290 Value moved_value(std::move(value));
304 BinaryValue moved_value(std::move(value));
318 int move;
322 DictionaryValue moved_value(std::move(value));
323 moved_value.GetInteger("Int", &move);
326 EXPECT_EQ(123, move);
337 int move;
341 ListValue moved_value(std::move(value));
342 moved_value.GetInteger(0, &move);
345 EXPECT_EQ(123, move);
375 settings.Set("global.toolbar.bookmarks", std::move(new_toolbar_bookmarks));
381 toolbar_bookmarks->Append(std::move(new_bookmark));
454 binary.reset(new BinaryValue(std::move(buffer)));
544 list.Append(std::move(value));
659 original_dict.Set("null", std::move(scoped_null));
662 original_dict.Set("bool", std::move(scoped_bool));
665 original_dict.Set("int", std::move(scoped_int));
668 original_dict.Set("double", std::move(scoped_double));
671 original_dict.Set("string", std::move(scoped_string));
674 original_dict.Set("string16", std::move(scoped_string16));
678 new BinaryValue(std::move(original_buffer)));
680 original_dict.Set("binary", std::move(scoped_binary));
686 scoped_list->Append(std::move(scoped_list_element_0));
689 scoped_list->Append(std::move(scoped_list_element_1));
690 original_dict.Set("list", std::move(scoped_list));
696 original_dict.Set("dictionary", std::move(scoped_nested_dictionary));
830 dv.Set("f", std::move(list));
832 copy->Set("f", std::move(list_copy));
993 original_dict.Set("null", std::move(scoped_null));
996 original_dict.Set("bool", std::move(scoped_bool));
999 original_dict.Set("int", std::move(scoped_int));
1002 original_dict.Set("double", std::move(scoped_double));
1005 original_dict.Set("string", std::move(scoped_string));
1008 original_dict.Set("string16", std::move(scoped_string16));
1012 new BinaryValue(std::move(original_buffer)));
1014 original_dict.Set("binary", std::move(scoped_binary));
1019 scoped_list->Append(std::move(scoped_list_element_0));
1021 scoped_list->Append(std::move(scoped_list_element_1));
1022 original_dict.Set("list", std::move(scoped_list));
1077 root->Set("dict_with_empty_children", std::move(inner));
1085 root->Set("list_with_empty_children", std::move(inner));
1095 root->Set("list_with_empty_children", std::move(inner));
1099 root->Set("dict_with_empty_children", std::move(inner2));
1110 inner->Append(std::move(inner2));
1111 root->Set("list_with_empty_children", std::move(inner));
1130 base->Set("sub_dict_key", std::move(base_sub_dict));
1138 merge->Set("sub_dict_key", std::move(merge_sub_dict));
1179 base->Set("dict", std::move(child));