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

1234

/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/v8/src/wasm/
H A Dsignature-map.h33 uint32_t next_ = 0; member in class:v8::internal::wasm::SignatureMap
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/
H A Dop_subscript.runtime.pass.cpp21 static int next_; member in class:A
24 A() : state_(++next_) {}
35 int A::next_ = 0; member in class:A
/external/pdfium/core/fxcrt/
H A Dunowned_ptr_unittest.cpp17 UnownedPtr<Clink> next_ = nullptr; member in class:fxcrt::__anon17808::Clink
23 ptr2->next_ = ptr1;
31 ptr2->next_ = ptr1;
33 ptr2->next_ = nullptr;
40 ptr2->next_ = ptr1;
42 ptr2->next_.Release();
51 ptr2->next_ = ptr1;
67 ptr2->next_ = ptr1;
68 ptr2->next_ = nullptr;
84 ptr2->next_
[all...]
H A Dweak_ptr_unittest.cpp26 next_.Reset();
28 void SetNext(const WeakTestPtr& next) { next_ = next; }
33 WeakTestPtr next_; member in class:fxcrt::__anon17809::PseudoDeletable
/external/perfetto/include/perfetto/base/
H A Dstring_splitter.h66 char* next_; member in class:perfetto::base::StringSplitter
/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/v8/src/
H A Dfutex-emulation.h42 next_(nullptr),
56 FutexWaitListNode* next_; member in class:v8::internal::FutexWaitListNode
/external/v8/src/zone/
H A Dzone-segment.h28 Segment* next() const { return next_; }
29 void set_next(Segment* const next) { next_ = next; }
52 Segment* next_; member in class:v8::internal::Segment
/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/googletest/googletest/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/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/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

Completed in 1206 milliseconds

1234