Searched refs:operations_ (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/asio/detail/ |
D | reactor_op_queue.hpp | 50 : operations_() in reactor_op_queue() 55 iterator begin() { return operations_.begin(); } in begin() 56 iterator end() { return operations_.end(); } in end() 64 operations_.insert(value_type(descriptor, mapped_type())); in enqueue_operation() 78 if (i != operations_.end()) in cancel_operations() 86 operations_.erase(i); in cancel_operations() 101 return this->cancel_operations(operations_.find(descriptor), ops, ec); in cancel_operations() 107 return operations_.empty(); in empty() 113 return operations_.find(descriptor) != operations_.end(); in has_operation() 121 if (i != operations_.end()) in perform_operations() [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | reactor_op_queue.hpp | 50 : operations_() in reactor_op_queue() 55 iterator begin() { return operations_.begin(); } in begin() 56 iterator end() { return operations_.end(); } in end() 64 operations_.insert(value_type(descriptor, mapped_type())); in enqueue_operation() 78 if (i != operations_.end()) in cancel_operations() 86 operations_.erase(i); in cancel_operations() 101 return this->cancel_operations(operations_.find(descriptor), ops, ec); in cancel_operations() 107 return operations_.empty(); in empty() 113 return operations_.find(descriptor) != operations_.end(); in has_operation() 121 if (i != operations_.end()) in perform_operations() [all …]
|
/third_party/boost/libs/iostreams/test/detail/ |
D | operation_sequence.hpp | 113 map_type operations_; member in boost::iostreams::test::operation_sequence 163 map_type::const_iterator it = operations_.find(id); in new_operation() 164 if (it != operations_.end()) in new_operation() 169 operations_.insert(make_pair(id, ptr_type(op.pimpl_))); in new_operation() 203 if (++total_executed_ == operations_.size()) in execute() 215 map_type::iterator it = operations_.find(id); in remove_operation() 216 if (it == operations_.end()) in remove_operation() 219 operations_.erase(it); in remove_operation()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/ir/datasetops/ |
D | map_node.cc | 39 : operations_(operations), in MapNode() 49 std::vector<std::shared_ptr<TensorOperation>> operations = operations_; in Copy() 58 << operations_.size() << ",...)"; in Print() 68 operations_.begin(), operations_.end(), std::back_inserter(tensor_ops), in Build() 104 if (operations_.empty()) { in ValidateParams() 109 for (const auto &op : operations_) { in ValidateParams() 150 operations_ = operations; in setOperations() 152 std::vector<std::shared_ptr<TensorOperation>> MapNode::operations() { return operations_; } in operations() 168 for (auto op : operations_) { in to_json()
|
D | map_node.h | 85 const auto &TensorOperations() const { return operations_; } in TensorOperations() 116 std::vector<std::shared_ptr<TensorOperation>> operations_;
|