Home
last modified time | relevance | path

Searched refs:LegacyDictStorage (Results 1 – 3 of 3) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/base/
H A Dvalues.h556 const LegacyDictStorage& dict() const { in dict()
557 return absl::get<LegacyDictStorage>(data_); in dict()
559 LegacyDictStorage& dict() { return absl::get<LegacyDictStorage>(data_); } in dict()
564 explicit Value(const LegacyDictStorage& storage);
565 explicit Value(LegacyDictStorage&& storage) noexcept;
596 LegacyDictStorage,
606 using const_iterator = LegacyDictStorage::const_iterator;
607 using iterator = LegacyDictStorage::iterator;
613 explicit DictionaryValue(const LegacyDictStorage& in_dict);
614 explicit DictionaryValue(LegacyDictStorage&& in_dict) noexcept;
[all …]
H A Dvalues.cc172 data_.emplace<LegacyDictStorage>(); in Value()
224 : data_(absl::in_place_type_t<LegacyDictStorage>()) { in Value()
233 : data_(absl::in_place_type_t<LegacyDictStorage>()) { in Value()
252 Value::Value(const LegacyDictStorage& storage) in Value()
253 : data_(absl::in_place_type_t<LegacyDictStorage>()) { in Value()
261 Value::Value(LegacyDictStorage&& storage) noexcept in Value()
948 [](const Value::LegacyDictStorage::value_type& u, in operator <()
949 const Value::LegacyDictStorage::value_type& v) { in operator <()
1058 DictionaryValue::DictionaryValue(const LegacyDictStorage& storage) in DictionaryValue()
1061 DictionaryValue::DictionaryValue(LegacyDictStorage&& storage) noexcept in DictionaryValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ipc/
H A Dipc_message_utils.cc170 std::vector<base::Value::LegacyDictStorage::value_type> entries; in ReadDictionaryValue()
180 base::DictionaryValue(base::Value::LegacyDictStorage(std::move(entries))); in ReadDictionaryValue()