Searched refs:node_ (Results 1 – 9 of 9) sorted by relevance
210 auto before = iter.node_;393 return iterator(citer.node_);451 iterator_impl(const iterator_impl& other) { node_ = other.node_; }454 node_ = other.node_;458 bool IsValid() const { return !internal::is_sentinel_ptr(node_) && (node_ != nullptr); }459 bool operator==(const iterator_impl& other) const { return node_ == other.node_; }460 bool operator!=(const iterator_impl& other) const { return node_ != other.node_; }466 node_ = ns.next_;474 if (node_) {516 return *node_;[all …]
331 auto& iter_ns = NodeTraits::node_state(*iter.node_);475 return iterator(citer.node_);575 iterator_impl(const iterator_impl& other) { node_ = other.node_; }578 node_ = other.node_;582 bool IsValid() const { return (node_ != nullptr) && !internal::is_sentinel_ptr(node_); }583 bool operator==(const iterator_impl& other) const { return node_ == other.node_; }584 bool operator!=(const iterator_impl& other) const { return node_ != other.node_; }590 node_ = NodeTraits::node_state(*node_).next_;608 return *node_;613 return node_;[all …]
324 return iterator(citer.node_);337 return iterator(citer.node_);576 iterator_impl(const iterator_impl& other) { node_ = other.node_; }579 node_ = other.node_;584 bool operator==(const iterator_impl& other) const { return node_ == other.node_; }585 bool operator!=(const iterator_impl& other) const { return node_ != other.node_; }597 if (node_ != nullptr) {601 node_ = internal::unmake_sentinel<ContainerType*>(node_)->right_most_;627 … typename IterTraits::RefType operator*() const { ZX_DEBUG_ASSERT(node_); return *node_; }628 typename IterTraits::RawPtrType operator->() const { ZX_DEBUG_ASSERT(node_); return node_; }[all …]
54 : reserver_(reserver), node_(node) { in ReservedNode()58 ReservedNode::ReservedNode(ReservedNode&& o) : reserver_(o.reserver_), node_(o.node_) { in ReservedNode()65 node_ = o.node_; in operator =()76 return node_; in index()
92 uint32_t node_; variable
78 const fbl::RefPtr<fs::Vnode>& node() const { return node_; } in node()83 fbl::RefPtr<fs::Vnode> node_; variable
68 return obj.node_; in node_state()76 fbl::DoublyLinkedListNodeState<fbl::unique_ptr<PendingOperation>> node_;206 return obj.node_; in node_state()256 fbl::DoublyLinkedListNodeState<Devhost*> node_; variable
91 return obj.node_; in node_state()104 fbl::DoublyLinkedListNodeState<DcIostate*> node_; member in devmgr::DcIostate
140 : id_(id), name_(std::move(name)), node_(std::move(node)) { in Entry()
Completed in 31 milliseconds