/external/cronet/base/ |
D | values.cc | 699 Value* Value::Dict::SetByDottedPath(StringPiece path, Value&& value) { in SetByDottedPath() function in base::Value::Dict 727 Value* Value::Dict::SetByDottedPath(StringPiece path, bool value) { in SetByDottedPath() function in base::Value::Dict 728 return SetByDottedPath(path, Value(value)); in SetByDottedPath() 731 Value* Value::Dict::SetByDottedPath(StringPiece path, int value) { in SetByDottedPath() function in base::Value::Dict 732 return SetByDottedPath(path, Value(value)); in SetByDottedPath() 735 Value* Value::Dict::SetByDottedPath(StringPiece path, double value) { in SetByDottedPath() function in base::Value::Dict 736 return SetByDottedPath(path, Value(value)); in SetByDottedPath() 739 Value* Value::Dict::SetByDottedPath(StringPiece path, StringPiece value) { in SetByDottedPath() function in base::Value::Dict 740 return SetByDottedPath(path, Value(value)); in SetByDottedPath() 743 Value* Value::Dict::SetByDottedPath(StringPiece path, StringPiece16 value) { in SetByDottedPath() function in base::Value::Dict [all …]
|
D | values.h | 537 Value* SetByDottedPath(StringPiece path, Value&& value); 538 Value* SetByDottedPath(StringPiece path, bool value); 540 Value* SetByDottedPath(StringPiece, const T*) = delete; 541 Value* SetByDottedPath(StringPiece path, int value); 542 Value* SetByDottedPath(StringPiece path, double value); 543 Value* SetByDottedPath(StringPiece path, StringPiece value); 544 Value* SetByDottedPath(StringPiece path, StringPiece16 value); 545 Value* SetByDottedPath(StringPiece path, const char* value); 546 Value* SetByDottedPath(StringPiece path, const char16_t* value); 547 Value* SetByDottedPath(StringPiece path, std::string&& value); [all …]
|
D | values_unittest.cc | 621 Value* c = dict.SetByDottedPath("a.b.c", Value()); in TEST() 1126 TEST(ValuesTest, SetByDottedPath) { in TEST() argument 1129 Value* inserted = root.SetByDottedPath("one.two", Value(123)); in TEST() 1136 inserted = root.SetByDottedPath("foo.bar", Value(123)); in TEST() 1144 root.SetByDottedPath("foo.bar", Value("hello")); in TEST() 1151 found = root.SetByDottedPath("foo.bar.baz", Value(123)); in TEST() 1157 Value* inserted = root.SetByDottedPath("foo.bar", true); in TEST() 1165 root.SetByDottedPath("foo.bar", false); in TEST() 1172 ASSERT_FALSE(root.SetByDottedPath("foo.bar.zoo", true)); in TEST() 1177 Value* inserted = root.SetByDottedPath("foo.bar", 123); in TEST() [all …]
|
D | values_unittest.nc | 36 dict.SetByDottedPath("moo.moo", ptr); 61 …ETBYDOTTEDPATH_INT64_T) // [r"fatal error: call to member function 'SetByDottedPath' is ambiguous… 65 dict.SetByDottedPath("あいうえお", value);
|
/external/cronet/components/cronet/ |
D | url_request_context_config_unittest.cc | 65 options.SetByDottedPath("QUIC.max_server_configs_stored_in_properties", 2); in TEST() 66 options.SetByDottedPath("QUIC.user_agent_id", "Custom QUIC UAID"); in TEST() 67 options.SetByDottedPath("QUIC.idle_connection_timeout_seconds", 300); in TEST() 68 options.SetByDottedPath("QUIC.close_sessions_on_ip_change", true); in TEST() 69 options.SetByDottedPath("QUIC.connection_options", "TIME,TBBR,REJ"); in TEST() 70 options.SetByDottedPath( in TEST() 74 options.SetByDottedPath("AsyncDNS.enable", true); in TEST() 75 options.SetByDottedPath("NetworkErrorLogging.enable", true); in TEST() 76 options.SetByDottedPath("NetworkErrorLogging.preloaded_report_to_headers", in TEST()
|
/external/cronet/base/test/launcher/ |
D | test_results_tracker.cc | 507 links.SetByDottedPath(link.first, std::move(link_info)); in SaveSummaryAsJSON() 520 tags.SetByDottedPath(tag.first, std::move(tag_info)); in SaveSummaryAsJSON() 529 properties.SetByDottedPath(property.first, in SaveSummaryAsJSON()
|
/external/cronet/components/prefs/ |
D | json_pref_store.cc | 231 prefs_.SetByDottedPath(key, std::move(value)); in SetValue() 243 prefs_.SetByDottedPath(key, std::move(value)); in SetValueSilently()
|
D | pref_value_map.cc | 177 dictionary.SetByDottedPath(value.first, value.second.Clone()); in AsDict()
|
D | overlay_user_pref_store.cc | 103 values.SetByDottedPath(key, std::move(*out_value)); in GetValues()
|
D | segregated_pref_store.cc | 101 values.SetByDottedPath(key, std::move(*value)); in GetValues()
|
D | overlay_user_pref_store_unittest.cc | 142 modify->GetDict().SetByDottedPath(regular_key, 42); in TEST_F()
|
D | pref_service.cc | 233 out.SetByDottedPath(it.first, GetPreferenceValue(it.first)->Clone()); in GetPreferenceValues() 239 out.SetByDottedPath(it.first, pref->GetValue()->Clone()); in GetPreferenceValues()
|
/external/cronet/net/log/ |
D | file_net_log_observer_unittest.cc | 505 constants.SetByDottedPath(kConstantKey, kConstantString); in TEST_P() 532 dummy_polled_data.SetByDottedPath(kDummyPolledDataPath, in TEST_P()
|