Searched refs:next_ (Results 1 - 25 of 119) sorted by relevance

12345

/external/perfetto/src/base/
H A Dstring_splitter.cc45 next_ = str;
50 next_[size - 1] = '\0';
54 for (; next_ < end_; next_++) {
55 if (*next_ == delimiter_)
57 cur_ = next_;
58 for (;; next_++) {
59 if (*next_ == delimiter_) {
60 cur_size_ = static_cast<size_t>(next_ - cur_);
61 *(next_
[all...]
/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/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 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 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/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/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/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...]
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) {
114 assert(p->next_ != this &&
117 p = p->next_;
119 p->next_ = this;
120 next_ = ptr;
129 if (next_ == this) return true;
130 linked_ptr_internal const* p = next_;
131 while (p->next_ != this) {
132 assert(p->next_ !
142 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) {
114 assert(p->next_ != this &&
117 p = p->next_;
119 p->next_ = this;
120 next_ = ptr;
129 if (next_ == this) return true;
130 linked_ptr_internal const* p = next_;
131 while (p->next_ != this) {
132 assert(p->next_ !
142 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h93 next_ = this;
113 while (p->next_ != ptr) {
114 assert(p->next_ != this &&
117 p = p->next_;
119 p->next_ = this;
120 next_ = ptr;
129 if (next_ == this) return true;
130 linked_ptr_internal const* p = next_;
131 while (p->next_ != this) {
132 assert(p->next_ !
142 mutable linked_ptr_internal const* next_; member in class:testing::internal::linked_ptr_internal
[all...]
/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/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...]
/external/protobuf/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/swiftshader/third_party/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/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/vulkan-validation-layers/tests/gtest-1.7.0/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/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/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
H A Dsparse_column_iterable.h50 cur_ = next_;
76 range_.end = next_;
86 next_ = std::min(next_ + 1, end_);
87 while (next_ < end_ && iter_->ix()(cur_, 0) == iter_->ix()(next_, 0)) {
88 ++next_;
95 int64 next_; member in class:tensorflow::boosted_trees::utils::SparseColumnIterable::Iterator
/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_) {

Completed in 791 milliseconds

12345