/external/libchrome/base/containers/ |
D | linked_list.h | 87 LinkNode() : previous_(NULL), next_(NULL) {} in LinkNode() 89 : previous_(previous), next_(next) {} in LinkNode() 93 this->next_ = e; in InsertBefore() 95 e->previous_->next_ = this; in InsertBefore() 101 this->next_ = e->next_; in InsertAfter() 103 e->next_->previous_ = this; in InsertAfter() 104 e->next_ = this; in InsertAfter() 109 this->previous_->next_ = this->next_; in RemoveFromList() 110 this->next_->previous_ = this->previous_; in RemoveFromList() 113 this->next_ = NULL; in RemoveFromList() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | timer_queue_set.ipp | 30 q->next_ = first_; 40 first_ = q->next_; 41 q->next_ = 0; 45 for (timer_queue_base* p = first_; p->next_; p = p->next_) 47 if (p->next_ == q) 49 p->next_ = q->next_; 50 q->next_ = 0; 59 for (timer_queue_base* p = first_; p; p = p->next_) 68 for (timer_queue_base* p = first_; p; p = p->next_) 76 for (timer_queue_base* p = first_; p; p = p->next_) [all …]
|
D | service_registry.ipp | 34 service = service->next_; 40 asio::io_service::service* next_service = first_service_->next_; 58 service = service->next_; 112 service = service->next_; 130 service = service->next_; 134 new_service.ptr_->next_ = first_service_; 155 service = service->next_; 160 new_service->next_ = first_service_; 174 service = service->next_;
|
/external/google-breakpad/src/processor/ |
D | linked_ptr.h | 69 next_ = this; in join_new() 75 while (p->next_ != ptr) p = p->next_; in join() 76 p->next_ = this; in join() 77 next_ = ptr; in join() 83 if (next_ == this) return true; in depart() 84 linked_ptr_internal const* p = next_; in depart() 85 while (p->next_ != this) p = p->next_; in depart() 86 p->next_ = next_; in depart() 91 mutable linked_ptr_internal const* next_;
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 93 next_ = this; in join_new() 113 while (p->next_ != ptr) p = p->next_; in join() 114 p->next_ = this; in join() 115 next_ = ptr; in join() 124 if (next_ == this) return true; in depart() 125 linked_ptr_internal const* p = next_; in depart() 126 while (p->next_ != this) p = p->next_; in depart() 127 p->next_ = next_; in depart() 132 mutable linked_ptr_internal const* next_;
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 93 next_ = this; in join_new() 113 while (p->next_ != ptr) p = p->next_; in join() 114 p->next_ = this; in join() 115 next_ = ptr; in join() 124 if (next_ == this) return true; in depart() 125 linked_ptr_internal const* p = next_; in depart() 126 while (p->next_ != this) p = p->next_; in depart() 127 p->next_ = next_; in depart() 132 mutable linked_ptr_internal const* next_;
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 93 next_ = this; in join_new() 113 while (p->next_ != ptr) p = p->next_; in join() 114 p->next_ = this; in join() 115 next_ = ptr; in join() 124 if (next_ == this) return true; in depart() 125 linked_ptr_internal const* p = next_; in depart() 126 while (p->next_ != this) p = p->next_; in depart() 127 p->next_ = next_; in depart() 132 mutable linked_ptr_internal const* next_;
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 93 next_ = this; in join_new() 113 while (p->next_ != ptr) p = p->next_; in join() 114 p->next_ = this; in join() 115 next_ = ptr; in join() 124 if (next_ == this) return true; in depart() 125 linked_ptr_internal const* p = next_; in depart() 126 while (p->next_ != this) p = p->next_; in depart() 127 p->next_ = next_; in depart() 132 mutable linked_ptr_internal const* next_;
|
/external/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 93 next_ = this; in join_new() 113 while (p->next_ != ptr) p = p->next_; in join() 114 p->next_ = this; in join() 115 next_ = ptr; in join() 124 if (next_ == this) return true; in depart() 125 linked_ptr_internal const* p = next_; in depart() 126 while (p->next_ != this) p = p->next_; in depart() 127 p->next_ = next_; in depart() 132 mutable linked_ptr_internal const* next_;
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
D | gtest-linked_ptr.h | 93 next_ = this; in join_new() 113 while (p->next_ != ptr) p = p->next_; in join() 114 p->next_ = this; in join() 115 next_ = ptr; in join() 124 if (next_ == this) return true; in depart() 125 linked_ptr_internal const* p = next_; in depart() 126 while (p->next_ != this) p = p->next_; in depart() 127 p->next_ = next_; in depart() 132 mutable linked_ptr_internal const* next_;
|
/external/libchrome/base/memory/ |
D | linked_ptr.h | 49 next_ = this; in join_new() 54 next_ = ptr->next_; in join() 55 ptr->next_ = this; in join() 61 if (next_ == this) return true; in depart() 62 linked_ptr_internal const* p = next_; in depart() 63 while (p->next_ != this) p = p->next_; in depart() 64 p->next_ = next_; in depart() 69 mutable linked_ptr_internal const* next_;
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | call_stack.hpp | 38 next_(call_stack<Key, Value>::top_) in context() 48 next_(call_stack<Key, Value>::top_) in context() 56 call_stack<Key, Value>::top_ = next_; in ~context() 62 context* elem = next_; in next_by_key() 67 elem = elem->next_; in next_by_key() 82 context* next_; member in asio::detail::call_stack::context 96 elem = elem->next_; in contains()
|
/external/v8/src/crankshaft/ |
D | hydrogen-load-elimination.cc | 25 HFieldApproximation* next_; member in v8::internal::HFieldApproximation 32 copy->next_ = this->next_ == NULL ? NULL : this->next_->Copy(zone); in Copy() 177 prev->next_ = approx->next_; in Merge() 179 fields_[i] = approx->next_; in Merge() 181 approx = approx->next_; in Merge() 185 approx = approx->next_; in Merge() 313 approx = approx->next_; in Find() 328 approx = approx->next_; in FindOrCreate() 342 approx->next_ = fields_[field]; in FindOrCreate() 360 prev->next_ = approx->next_; in KillFieldInternal() [all …]
|
/external/v8/src/parsing/ |
D | scanner.h | 360 Token::Value peek() const { return next_.token; } in peek() 362 Location peek_location() const { return next_.location; } in peek_location() 368 return LiteralContainsEscapes(next_); in next_literal_contains_escapes() 375 DCHECK_NOT_NULL(next_.literal_chars); in is_next_contextual_keyword() 376 return next_.literal_chars->is_contextual_keyword(keyword); in is_next_contextual_keyword() 494 next_.literal_chars = free_buffer; in StartLiteral() 505 next_.raw_literal_chars = free_buffer; in StartRawLiteral() 509 DCHECK_NOT_NULL(next_.literal_chars); in INLINE() 510 next_.literal_chars->AddChar(c); in INLINE() 514 DCHECK_NOT_NULL(next_.raw_literal_chars); in INLINE() [all …]
|
D | scanner.cc | 235 if (next_.token == Token::EOS) { in Next() 236 next_.location.beg_pos = current_.location.beg_pos; in Next() 237 next_.location.end_pos = current_.location.end_pos; in Next() 239 current_ = next_; in Next() 241 next_ = next_next_; in Next() 251 next_.token = token; in Next() 252 next_.location.beg_pos = pos; in Next() 253 next_.location.end_pos = pos + 1; in Next() 269 Token::Value ret = next_.token; in PeekAhead() 270 next_next_ = next_; in PeekAhead() [all …]
|
/external/v8/src/ |
D | futex-emulation.cc | 45 DCHECK(node->prev_ == nullptr && node->next_ == nullptr); in AddNode() 47 tail_->next_ = node; in AddNode() 53 node->next_ = nullptr; in AddNode() 60 node->prev_->next_ = node->next_; in RemoveNode() 62 head_ = node->next_; in RemoveNode() 65 if (node->next_) { in RemoveNode() 66 node->next_->prev_ = node->prev_; in RemoveNode() 71 node->prev_ = node->next_ = nullptr; in RemoveNode() 209 node = node->next_; in Wake() 247 node = node->next_; in WakeOrRequeue() [all …]
|
D | v8threads.cc | 181 next_(this), in ThreadState() 198 next_->previous_ = previous_; in Unlink() 199 previous_->next_ = next_; in Unlink() 207 next_ = flying_anchor->next_; in LinkInto() 209 flying_anchor->next_ = this; in LinkInto() 210 next_->previous_ = this; in LinkInto() 215 ThreadState* gotten = free_anchor_->next_; in GetFreeThreadState() 232 if (next_ == thread_manager_->in_use_anchor_) return NULL; in Next() 233 return next_; in Next() 259 for (ThreadState* current = anchor->next_; current != anchor;) { in DeleteThreadStateList() [all …]
|
/external/protobuf/gtest/samples/ |
D | sample3-inl.h | 57 QueueNode* next() { return next_; } in next() 58 const QueueNode* next() const { return next_; } in next() 63 QueueNode(const E& an_element) : element_(an_element), next_(NULL) {} in QueueNode() 70 QueueNode* next_; variable 124 last_->next_ = new_node; in Enqueue() 138 head_ = head_->next_; in Dequeue() 156 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) { in Map()
|
/external/google-breakpad/src/testing/gtest/samples/ |
D | sample3-inl.h | 57 QueueNode* next() { return next_; } in next() 58 const QueueNode* next() const { return next_; } in next() 63 explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {} in QueueNode() 70 QueueNode* next_; variable 123 last_->next_ = new_node; in Enqueue() 137 head_ = head_->next_; in Dequeue() 155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) { in Map()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
D | sample3-inl.h | 57 QueueNode* next() { return next_; } in next() 58 const QueueNode* next() const { return next_; } in next() 63 explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {} in QueueNode() 70 QueueNode* next_; variable 123 last_->next_ = new_node; in Enqueue() 137 head_ = head_->next_; in Dequeue() 155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) { in Map()
|
/external/v8/src/base/platform/ |
D | condition-variable.cc | 129 Event* next_; 140 freelist_ = event->next_; 152 freelist_ = event->next_; 161 for (Event* we = waitlist_; we != NULL; we = we->next_) { 167 event->next_ = waitlist_; 178 for (Event** wep = &waitlist_;; wep = &(*wep)->next_) { 181 *wep = event->next_; 188 for (Event* fe = freelist_; fe != NULL; fe = fe->next_) { 199 event->next_ = freelist_; 226 event = event->next_) { [all …]
|
/external/jsoncpp/src/lib_json/ |
D | json_batchallocator.h | 45 BatchInfo* nextBatch = batch->next_; in ~BatchAllocator() 62 currentBatch_ = currentBatch_->next_; in allocate() 64 currentBatch_ = currentBatch_->next_; in allocate() 69 currentBatch_->next_ = batches_; // insert at the head of the list in allocate() 89 BatchInfo* next_; member 104 batch->next_ = 0; in allocateBatch()
|
/external/opencv3/3rdparty/libwebp/mux/ |
D | muxinternal.c | 62 next = chunk->next_; in ChunkRelease() 102 chunk = chunk->next_; in ChunkSearchNextInList() 113 WebPChunk* next_chunk = ChunkSearchNextInList(first->next_, tag); in ChunkSearchList() 133 chunk_list = &cur_chunk->next_; in ChunkSearchListToSet() 177 new_chunk->next_ = *chunk_list; in ChunkSetNth() 198 chunk_list = chunk_list->next_; in ChunksListDiskSize() 219 chunk_list = chunk_list->next_; in ChunkListEmit() 239 next = wpi->next_; in MuxImageRelease() 250 for (current = wpi_list; current != NULL; current = current->next_) { in MuxImageCount() 282 wpi_list = &cur_wpi->next_; in SearchImageToGetOrDelete() [all …]
|
/external/jsoncpp/src/test_lib_json/ |
D | jsontest.cpp | 80 rootPredicateNode_.next_ = 0; in TestResult() 91 PredicateContext* lastNode = rootPredicateNode_.next_; in addFailure() 92 for (; lastNode != 0; lastNode = lastNode->next_) { in addFailure() 127 while (lastNode->next_ != 0 && lastNode->next_->next_ != 0) { in popPredicateContext() 128 lastNode = lastNode->next_; in popPredicateContext() 131 PredicateContext* tail = lastNode->next_; in popPredicateContext() 137 lastNode->next_ = 0; in popPredicateContext() 146 while (lastNode->next_ != 0) { in getAssertionNestingLevel() 147 lastNode = lastNode->next_; in getAssertionNestingLevel()
|
/external/webrtc/webrtc/base/ |
D | autodetectproxy.cc | 32 : agent_(user_agent), resolver_(NULL), socket_(NULL), next_(0) { in AutoDetectProxy() 92 int next = next_; in OnMessage() 153 if (TEST_ORDER[next_] >= PROXY_UNKNOWN) { in Next() 224 switch (TEST_ORDER[next_]) { in OnConnectEvent() 243 LOG(LS_VERBOSE) << "AutoDetectProxy probing type " << TEST_ORDER[next_] in OnConnectEvent() 256 switch (TEST_ORDER[next_]) { in OnReadEvent() 278 ++next_; in OnReadEvent() 284 ++next_; in OnCloseEvent()
|