/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 32 first_ = last_ = 0; in clear() 42 first_ = last_ = x; in push_back() 46 last_->next = x; in push_back() 47 last_ = x; in push_back() 55 first_ = last_ = x; in push_front() 68 last_ = 0; in pop_front() 73 Item *back() { return last_; } in back() 82 l->last_->next = first_; in append_front() 96 last_->next = l->first_; in append_back() 97 last_ = l->last_; in append_back() [all …]
|
/external/webrtc/src/system_wrappers/source/ |
D | list_no_stl.cc | 50 last_(0), in ListWrapper() 71 return !first_ && !last_; in Empty() 118 return Erase(last_); in PopBack() 128 return last_; in Last() 178 last_ = new_item; in Insert() 248 last_ = previous_item; in Erase() 263 last_ = item; in PushBackImpl() 268 item->prev_ = last_; in PushBackImpl() 269 last_->next_ = item; in PushBackImpl() 270 last_ = item; in PushBackImpl() [all …]
|
D | map_no_stl.cc | 52 last_(0), in MapNoStl() 84 last_ = new_item; in Insert() 113 last_ = new_item; in Insert() 124 return last_; in Last() 208 last_ = previous_item; in Remove()
|
D | map_no_stl.h | 64 MapNoStlItem* last_; variable
|
D | list_no_stl.h | 73 ListNoStlItem* last_; variable
|
/external/protobuf/gtest/samples/ |
D | sample3-inl.h | 78 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue() 97 head_ = last_ = NULL; in Clear() 110 QueueNode<E>* Last() { return last_; } in Last() 111 const QueueNode<E>* Last() const { return last_; } in Last() 121 head_ = last_ = new_node; in Enqueue() 124 last_->next_ = new_node; in Enqueue() 125 last_ = new_node; in Enqueue() 141 last_ = NULL; in Dequeue() 165 QueueNode<E>* last_; // The last node of the queue. variable
|
/external/google-breakpad/src/testing/gtest/samples/ |
D | sample3-inl.h | 77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue() 96 head_ = last_ = NULL; in Clear() 109 QueueNode<E>* Last() { return last_; } in Last() 110 const QueueNode<E>* Last() const { return last_; } in Last() 120 head_ = last_ = new_node; in Enqueue() 123 last_->next_ = new_node; in Enqueue() 124 last_ = new_node; in Enqueue() 140 last_ = NULL; in Dequeue() 164 QueueNode<E>* last_; // The last node of the queue. variable
|
/external/v8/src/ |
D | unbound-queue-inl.h | 27 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_); 47 if (divider_ == base::Acquire_Load(&last_)) return false; 57 Node*& next = reinterpret_cast<Node*>(last_)->next; 59 base::Release_Store(&last_, reinterpret_cast<base::AtomicWord>(next)); 69 return base::NoBarrier_Load(÷r_) == base::NoBarrier_Load(&last_); 75 if (divider_ == base::Acquire_Load(&last_)) return NULL;
|
D | parser.h | 107 BufferedZoneList() : list_(NULL), last_(NULL) {} in BufferedZoneList() 113 if (last_ != NULL) { in Add() 117 list_->Add(last_, zone); in Add() 119 last_ = value; in Add() 123 DCHECK(last_ != NULL); in last() 124 return last_; in last() 128 DCHECK(last_ != NULL); in RemoveLast() 129 T* result = last_; in RemoveLast() 131 last_ = list_->RemoveLast(); in RemoveLast() 133 last_ = NULL; in RemoveLast() [all …]
|
D | unbound-queue.h | 39 base::AtomicWord last_; // Node* variable
|
D | hydrogen.h | 47 HInstruction* last() const { return last_; } in last() 48 void set_last(HInstruction* instr) { last_ = instr; } in set_last() 194 HInstruction* last_; variable
|
D | hydrogen.cc | 74 last_(NULL), in HBasicBlock() 152 first_ = last_ = entry; in AddInstruction() 154 instr->InsertAfter(last_); in AddInstruction()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_vector.h | 31 , last_() { in Vector() 44 last_ = 0; in Reset() 97 T *last_; variable 102 if (size <= (uptr)(last_ - begin_)) { in EnsureSize() 106 uptr cap0 = last_ - begin_; in EnsureSize() 119 last_ = begin_ + cap; in EnsureSize()
|
/external/google-breakpad/src/common/ |
D | memory.h | 65 last_(NULL), in PageAllocator() 106 for (PageHeader* header = last_; header; header = header->next) { in OwnsPointer() 134 header->next = last_; in GetNPages() 136 last_ = header; in GetNPages() 144 for (PageHeader *cur = last_; cur; cur = next) { in FreeAll() 156 PageHeader *last_; variable
|
/external/vixl/test/ |
D | test-runner.cc | 34 vixl::Test* vixl::Test::last_ = NULL; member in vixl::Test 58 VIXL_ASSERT(last_ == NULL); in Test() 61 last_->next_ = this; in Test() 63 last_ = this; in Test()
|
D | test-runner.h | 45 static Test* last() { return last_; } in last() 70 static Test* last_; variable
|
/external/v8/test/cctest/ |
D | cctest.cc | 48 CcTest* CcTest::last_ = NULL; member in CcTest 57 enabled_(enabled), initialize_(initialize), prev_(last_) { in CcTest() 73 prev_ = last_; in CcTest() 74 last_ = this; in CcTest()
|
D | cctest.h | 111 static CcTest* last() { return last_; } in last() 181 static CcTest* last_; variable
|
/external/webrtc/src/system_wrappers/interface/ |
D | list_wrapper.h | 102 ListItem* last_; variable
|
/external/bison/ |
D | ChangeLog-2012 | 11410 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
|