Searched defs:next_ (Results 1 - 25 of 70) sorted by relevance

123

/external/parameter-framework/asio/include/asio/detail/
H A Dtimer_queue_base.hpp30 timer_queue_base() : next_(0) {}
54 timer_queue_base* next_; member in class:asio::detail::timer_queue_base
H A Dcall_stack.hpp38 next_(call_stack<Key, Value>::top_)
48 next_(call_stack<Key, Value>::top_)
56 call_stack<Key, Value>::top_ = next_;
62 context* elem = next_;
67 elem = elem->next_;
82 context* next_; member in class:asio::detail::call_stack::context
96 elem = elem->next_;
H A Dhandler_tracking.hpp95 completion* next_; member in class:asio::detail::handler_tracking::completion
H A Dtask_io_service_operation.hpp48 : next_(0),
61 task_io_service_operation* next_; member in class:asio::detail::ASIO_INHERIT_TRACKED_HANDLER
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dtimer_queue_base.hpp30 timer_queue_base() : next_(0) {}
54 timer_queue_base* next_; member in class:asio::detail::timer_queue_base
H A Dcall_stack.hpp38 next_(call_stack<Key, Value>::top_)
48 next_(call_stack<Key, Value>::top_)
56 call_stack<Key, Value>::top_ = next_;
62 context* elem = next_;
67 elem = elem->next_;
82 context* next_; member in class:asio::detail::call_stack::context
96 elem = elem->next_;
H A Dhandler_tracking.hpp95 completion* next_; member in class:asio::detail::handler_tracking::completion
H A Dtask_io_service_operation.hpp48 : next_(0),
61 task_io_service_operation* next_; member in class:asio::detail::ASIO_INHERIT_TRACKED_HANDLER
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
H A Dindex.pass.cpp22 static int next_; member in class:A
24 A() : state_(++next_) {}
33 int A::next_ = 0; member in class:A
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
H A Dindex.fail.cpp22 static int next_; member in class:A
24 A() : state_(++next_) {}
33 int A::next_ = 0; member in class:A
/external/libchrome/base/containers/
H A Dlinked_list.h87 LinkNode() : previous_(NULL), next_(NULL) {}
89 : previous_(previous), next_(next) {}
93 this->next_ = e;
95 e->previous_->next_ = this;
101 this->next_ = e->next_;
103 e->next_->previous_ = this;
104 e->next_ = this;
109 this->previous_->next_ = this->next_;
136 LinkNode<T>* next_; member in class:base::LinkNode
[all...]
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample3-inl.h57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
123 last_->next_ = new_node;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
/external/jsoncpp/src/lib_json/
H A Djson_batchallocator.h45 BatchInfo* nextBatch = batch->next_;
62 currentBatch_ = currentBatch_->next_;
64 currentBatch_ = currentBatch_->next_;
69 currentBatch_->next_ = batches_; // insert at the head of the list
89 BatchInfo* next_; member in struct:Json::BatchAllocator::BatchInfo
104 batch->next_ = 0;
/external/parameter-framework/asio/include/asio/
H A Dio_service.hpp692 service* next_; member in class:asio::io_service::service
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dio_service.hpp692 service* next_; member in class:asio::io_service::service
/external/protobuf/gtest/samples/
H A Dsample3-inl.h57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
124 last_->next_ = new_node;
138 head_ = head_->next_;
156 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
/external/v8/src/
H A Dfutex-emulation.h41 next_(nullptr),
55 FutexWaitListNode* next_; member in class:v8::internal::FutexWaitListNode
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
H A Dsample3-inl.h57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
63 explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {}
70 QueueNode* next_; member in class:QueueNode
123 last_->next_ = new_node;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) {
/external/webrtc/webrtc/base/
H A Dautodetectproxy.h82 int next_; member in class:rtc::AutoDetectProxy
/external/google-breakpad/src/processor/
H A Dlinked_ptr.h69 next_ = this;
75 while (p->next_ != ptr) p = p->next_;
76 p->next_ = this;
77 next_ = ptr;
83 if (next_ == this) return true;
84 linked_ptr_internal const* p = next_;
85 while (p->next_ != this) p = p->next_;
86 p->next_
91 mutable linked_ptr_internal const* next_; member in class:google_breakpad::linked_ptr_internal
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/libchrome/base/memory/
H A Dlinked_ptr.h49 next_ = this;
54 next_ = ptr->next_;
55 ptr->next_ = this;
61 if (next_ == this) return true;
62 linked_ptr_internal const* p = next_;
63 while (p->next_ != this) p = p->next_;
64 p->next_ = next_;
69 mutable linked_ptr_internal const* next_; member in class:linked_ptr_internal
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_
132 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]

Completed in 1057 milliseconds

123