Home
last modified time | relevance | path

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

/external/openscreen/discovery/dnssd/public/
Ddns_sd_instance.cc67 subtypes_(std::move(subtypes)) { in DnsSdInstance()
74 for (const Subtype& subtype : subtypes_) { in DnsSdInstance()
78 std::sort(subtypes_.begin(), subtypes_.end()); in DnsSdInstance()
207 if (lhs.subtypes_.size() != rhs.subtypes_.size()) { in operator <()
208 return lhs.subtypes_.size() < rhs.subtypes_.size(); in operator <()
211 for (size_t i = 0; i < lhs.subtypes_.size(); i++) { in operator <()
212 comp = lhs.subtypes_[i].compare(rhs.subtypes_[i]); in operator <()
Ddns_sd_instance.h74 const std::vector<Subtype>& subtypes() { return subtypes_; } in subtypes()
89 std::vector<Subtype> subtypes_; variable
/external/tensorflow/tensorflow/core/ir/types/
Ddialect.h133 explicit TypeWithSubtypeStorage(const KeyTy& key) : subtypes_(key) {} in TypeWithSubtypeStorage()
135 bool operator==(const KeyTy& key) const { return key == subtypes_; }
141 KeyTy subtypes_; variable
186 ArrayRef<TensorType> getSubtypes() { return Base::getImpl()->subtypes_; } in getSubtypes()