/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 33 first_ = last_ = nullptr; in clear() 43 first_ = last_ = x; in push_back() 47 last_->next = x; in push_back() 48 last_ = x; in push_back() 56 first_ = last_ = x; in push_front() 69 last_ = nullptr; in pop_front() 75 Item *back() { return last_; } in back() 76 const Item *back() const { return last_; } in back() 85 l->last_->next = first_; in append_front() 99 last_->next = l->first_; in append_back() [all …]
|
/external/v8/src/regexp/ |
D | regexp-parser.h | 27 BufferedZoneList() : list_(nullptr), last_(nullptr) {} in BufferedZoneList() 33 if (last_ != nullptr) { in Add() 37 list_->Add(last_, zone); in Add() 39 last_ = value; in Add() 43 DCHECK(last_ != nullptr); in last() 44 return last_; in last() 48 DCHECK(last_ != nullptr); in RemoveLast() 49 T* result = last_; in RemoveLast() 51 last_ = list_->RemoveLast(); in RemoveLast() 53 last_ = nullptr; in RemoveLast() [all …]
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | STL.h | 1852 void channelMaskImages(InputIterator first_,InputIterator last_, in channelMaskImages() argument 1859 for (InputIterator iter = first_; iter != last_; ++iter) in channelMaskImages() 1901 bool linkImages(InputIterator first_,InputIterator last_) in linkImages() argument 1912 for (InputIterator iter = first_; iter != last_; ++iter) in linkImages() 1935 void restoreChannelMaskImages(InputIterator first_,InputIterator last_, in restoreChannelMaskImages() argument 1942 for (InputIterator iter = first_; iter != last_; ++iter) in restoreChannelMaskImages() 1955 void unlinkImages(InputIterator first_,InputIterator last_) in unlinkImages() argument 1960 for (InputIterator iter = first_; iter != last_; ++iter) in unlinkImages() 1975 void animateImages( InputIterator first_,InputIterator last_) in animateImages() argument 1977 if (linkImages(first_,last_) == false) in animateImages() [all …]
|
/external/perfetto/src/tracing/core/ |
D | patch_list.h | 71 PatchList() : last_(list_.before_begin()) {} in PatchList() 74 PERFETTO_DCHECK(empty() || last_->chunk_id != chunk_id || in emplace_back() 75 offset >= last_->offset + sizeof(Patch::PatchContent)); in emplace_back() 76 last_ = list_.emplace_after(last_, chunk_id, offset); in emplace_back() 77 return &*last_; in emplace_back() 84 last_ = list_.before_begin(); in pop_front() 94 return *last_; in back() 103 ListType::iterator last_; 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/googletest/googletest/samples/ |
D | sample3-inl.h | 76 Queue() : head_(nullptr), last_(nullptr), size_(0) {} in Queue() 95 head_ = last_ = nullptr; in Clear() 108 QueueNode<E>* Last() { return last_; } in Last() 109 const QueueNode<E>* Last() const { return last_; } in Last() 119 head_ = last_ = new_node; in Enqueue() 122 last_->next_ = new_node; in Enqueue() 123 last_ = new_node; in Enqueue() 139 last_ = nullptr; in Dequeue() 164 QueueNode<E>* last_; // The last node of the queue. variable
|
/external/v8/src/profiler/ |
D | unbound-queue-inl.h | 25 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_); 45 if (divider_ == base::Acquire_Load(&last_)) return false; 55 Node*& next = reinterpret_cast<Node*>(last_)->next; 57 base::Release_Store(&last_, reinterpret_cast<base::AtomicWord>(next)); 67 return base::Relaxed_Load(÷r_) == base::Relaxed_Load(&last_); 73 if (divider_ == base::Acquire_Load(&last_)) return nullptr;
|
D | unbound-queue.h | 39 base::AtomicWord last_; // Node* variable
|
/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/webrtc/webrtc/test/ |
D | histogram.cc | 26 SampleInfo(const std::string& name) : name_(name), last_(-1), total_(0) {} in SampleInfo() 28 int last_; // Last added sample. member 65 ptr->last_ = sample; in HistogramAdd() 77 return it->second.last_; in LastHistogramSample() 92 it.second.last_ = -1; in ClearHistograms()
|
/external/perfetto/include/perfetto/protozero/ |
D | proto_decoder.h | 105 : field_id_(field_id), iter_(begin), end_(end), last_(last) { in RepeatedFieldIterator() 115 if (iter_ == last_) { 126 PERFETTO_DCHECK(iter_ != last_); in FindNextMatchingId() 131 iter_ = last_->valid() ? last_ : end_; in FindNextMatchingId() 144 const Field* last_; variable
|
/external/google-breakpad/src/common/ |
D | memory.h | 65 last_(NULL), in PageAllocator() 106 for (PageHeader* header = last_; header; header = header->next) { in OwnsPointer() 135 header->next = last_; in GetNPages() 137 last_ = header; in GetNPages() 145 for (PageHeader *cur = last_; cur; cur = next) { in FreeAll() 157 PageHeader *last_; variable
|
/external/perf_data_converter/src/quipper/ |
D | huge_page_deducer.cc | 61 last_(std::numeric_limits<int>::min()) {} in MMapRange() 65 : first_(first_index), last_(last_index) {} in MMapRange() 69 auto& last = events.Get(last_).mmap_event(); in Len() 74 int LastIndex() const { return last_; } in LastIndex() 75 bool IsValid() const { return first_ <= last_; } in IsValid() 82 return events.Get(last_).mmap_event(); in LastMmap() 87 int last_; member in quipper::__anon5534a7e60211::MMapRange
|
/external/vixl/test/ |
D | test-runner.cc | 35 vixl::Test* vixl::Test::last_ = NULL; member in vixl::Test 63 VIXL_ASSERT(last_ == NULL); in Test() 66 last_->next_ = this; in Test() 68 last_ = this; in Test()
|
D | test-runner.h | 45 static Test* last() { return last_; } in last() 79 static Test* last_; variable
|
/external/python/cpython2/Misc/ |
D | HISTORY | 11306 - When reporting an exception, store its info in sys.last_*. Also, 12039 exception, don't store the exception information in sys.last_*; it
|
/external/python/cpython3/Misc/ |
D | HISTORY | 28685 - When reporting an exception, store its info in sys.last_*. Also, 29418 exception, don't store the exception information in sys.last_*; it
|