Searched defs:new_properties (Results 1 - 7 of 7) sorted by relevance
/external/chromium_org/base/win/ |
H A D | shortcut_unittest.cc | 232 ShortcutProperties new_properties; local 233 new_properties.set_target(link_properties_2_.target); 234 new_properties.set_arguments(link_properties_2_.arguments); 235 new_properties.set_description(link_properties_2_.description); 237 link_file_, new_properties, SHORTCUT_REPLACE_EXISTING)); 239 // Expect only properties in |new_properties| to be set, all other properties 241 ShortcutProperties expected_properties(new_properties);
|
/external/chromium_org/chromeos/network/ |
H A D | network_cert_migrator.cc | 189 base::DictionaryValue new_properties; local 190 new_properties.SetStringWithoutPathExpansion(nss_key, std::string()); 193 new_properties.SetWithoutPathExpansion(pem_key, ca_cert_pems.release()); 197 new_properties, local
|
H A D | managed_network_configuration_handler_impl.cc | 456 const base::DictionaryValue& new_properties) { 474 shill_properties.MergeDictionary(&new_properties); 454 UpdateExistingConfigurationWithPropertiesFromPolicy( const base::DictionaryValue& existing_properties, const base::DictionaryValue& new_properties) argument
|
/external/chromium_org/chromeos/dbus/ |
H A D | fake_shill_service_client.cc | 382 base::DictionaryValue new_properties; local 392 new_properties.SetWithoutPathExpansion(shill::kProviderProperty, provider); 395 new_properties.SetWithoutPathExpansion(property, value.DeepCopy()); 399 dict->MergeDictionary(&new_properties);
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
H A D | internet_options_handler.cc | 753 base::DictionaryValue* new_properties) { 757 new_properties->SetStringWithoutPathExpansion(key, new_value); 766 base::DictionaryValue* new_properties) { 770 new_properties->SetIntegerWithoutPathExpansion(key, new_value); 750 AddStringPropertyIfChanged(const std::string& key, const std::string& new_value, const base::DictionaryValue& old_properties, base::DictionaryValue* new_properties) argument 763 AddIntegerPropertyIfChanged(const std::string& key, int new_value, const base::DictionaryValue& old_properties, base::DictionaryValue* new_properties) argument
|
/external/chromium_org/v8/src/ |
H A D | objects.cc | 814 Handle<NameDictionary> new_properties = local 816 object->set_properties(*new_properties); 3872 Handle<FixedArray> new_properties = isolate->factory()->CopySizeFixedArray( local 3874 object->set_properties(*new_properties);
|
/external/v8/src/ |
H A D | objects.cc | 522 FixedArray* new_properties = NULL; local 524 if (!maybe_properties->To(&new_properties)) { 527 set_properties(new_properties); 1867 FixedArray* new_properties = 0; // Will always be NULL or a valid pointer. local 1878 new_properties = FixedArray::cast(new_properties_object); 1885 if (new_properties) { 1886 set_properties(FixedArray::cast(new_properties));
|
Completed in 419 milliseconds