Lines Matching refs:properties_

32   properties_.clear();
36 return properties_.empty();
40 properties_ = b.properties_;
44 return properties_ == rhs.properties_;
48 return properties_ != rhs.properties_;
52 return ContainsKey(properties_, name) &&
53 properties_.find(name)->second.IsTypeCompatible<bool>();
57 return ContainsKey(properties_, name) &&
58 properties_.find(name)->second
63 return ContainsKey(properties_, name) &&
64 properties_.find(name)->second.IsTypeCompatible<int32_t>();
68 return ContainsKey(properties_, name) &&
69 properties_.find(name)->second.IsTypeCompatible<int16_t>();
73 return ContainsKey(properties_, name) &&
74 properties_.find(name)->second.IsTypeCompatible<KeyValueStore>();
78 return ContainsKey(properties_, name) &&
79 properties_.find(name)->second.IsTypeCompatible<dbus::ObjectPath>();
83 return ContainsKey(properties_, name) &&
84 properties_.find(name)->second
89 return ContainsKey(properties_, name) &&
90 properties_.find(name)->second.IsTypeCompatible<string>();
94 return ContainsKey(properties_, name) &&
95 properties_.find(name)->second.IsTypeCompatible<Stringmap>();
99 return ContainsKey(properties_, name) &&
100 properties_.find(name)->second.IsTypeCompatible<Strings>();
104 return ContainsKey(properties_, name) &&
105 properties_.find(name)->second.IsTypeCompatible<uint32_t>();
109 return ContainsKey(properties_, name) &&
110 properties_.find(name)->second.IsTypeCompatible<uint8_t>();
114 return ContainsKey(properties_, name) &&
115 properties_.find(name)->second.IsTypeCompatible<uint16_t>();
119 return ContainsKey(properties_, name) &&
120 properties_.find(name)->second.IsTypeCompatible<vector<uint8_t>>();
124 return ContainsKey(properties_, name) &&
125 properties_.find(name)->second.IsTypeCompatible<vector<uint32_t>>();
129 return ContainsKey(properties_, name);
133 const auto it(properties_.find(name));
134 CHECK(it != properties_.end() && it->second.IsTypeCompatible<bool>())
141 const auto it(properties_.find(name));
142 CHECK(it != properties_.end() &&
149 const auto it(properties_.find(name));
150 CHECK(it != properties_.end() && it->second.IsTypeCompatible<int32_t>())
156 const auto it(properties_.find(name));
157 CHECK(it != properties_.end() && it->second.IsTypeCompatible<int16_t>())
163 const auto it(properties_.find(name));
164 CHECK(it != properties_.end() && it->second.IsTypeCompatible<KeyValueStore>())
170 const auto it(properties_.find(name));
171 CHECK(it != properties_.end() &&
178 const auto it(properties_.find(name));
179 CHECK(it != properties_.end() &&
189 const auto it(properties_.find(name));
190 CHECK(it != properties_.end() && it->second.IsTypeCompatible<string>())
197 const auto it(properties_.find(name));
198 CHECK(it != properties_.end() && it->second.IsTypeCompatible<Stringmap>())
204 const auto it(properties_.find(name));
205 CHECK(it != properties_.end() && it->second.IsTypeCompatible<Strings>())
211 const auto it(properties_.find(name));
212 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint32_t>())
218 const auto it(properties_.find(name));
219 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint16_t>())
225 const auto it(properties_.find(name));
226 CHECK(it != properties_.end() && it->second.IsTypeCompatible<uint8_t>())
232 const auto it(properties_.find(name));
233 CHECK(it != properties_.end() &&
240 const auto it(properties_.find(name));
241 CHECK(it != properties_.end() &&
248 const auto it(properties_.find(name));
249 CHECK(it != properties_.end());
254 properties_[name] = brillo::Any(value);
259 properties_[name] = brillo::Any(value);
263 properties_[name] = brillo::Any(value);
267 properties_[name] = brillo::Any(value);
272 properties_[name] = brillo::Any(value);
276 properties_[name] = brillo::Any(dbus::ObjectPath(value));
285 properties_[name] = brillo::Any(paths);
289 properties_[name] = brillo::Any(value);
294 properties_[name] = brillo::Any(value);
299 properties_[name] = brillo::Any(value);
303 properties_[name] = brillo::Any(value);
307 properties_[name] = brillo::Any(value);
311 properties_[name] = brillo::Any(value);
316 properties_[name] = brillo::Any(value);
321 properties_[name] = brillo::Any(value);
325 properties_[name] = value;
329 properties_.erase(name);
333 properties_.erase(name);
337 properties_.erase(name);
341 properties_.erase(name);
345 properties_.erase(name);
349 properties_.erase(name);
353 properties_.erase(name);
357 properties_.erase(name);
361 properties_.erase(name);
365 properties_.erase(name);
369 properties_.erase(name);
373 properties_.erase(name);
377 properties_.erase(name);
381 const auto it(properties_.find(name));
382 if (it == properties_.end()) {
390 const auto it(properties_.find(name));
391 if (it == properties_.end()) {
400 const auto it(properties_.find(name));
401 if (it == properties_.end()) {
411 for (const auto& key_value_pair : in_store.properties_) {
435 out_store->properties_.emplace(key_value_pair.first, store);
437 out_store->properties_.insert(key_value_pair);