/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | consuming_buffers.hpp | 58 first_(buffer(first, max_size)), in consuming_buffers_iterator() 113 || offset_ + buffer_size(first_) >= max_size_) in increment() 119 offset_ += buffer_size(first_); in increment() 120 first_ = buffer(*begin_remainder_++, max_size_ - offset_); in increment() 130 && buffer_cast<const void*>(first_) in equal() 131 == buffer_cast<const void*>(other.first_) in equal() 132 && buffer_size(first_) == buffer_size(other.first_) in equal() 139 return first_; in dereference() 143 Buffer first_; member in asio::detail::consuming_buffers_iterator 171 first_ = *buffers_.begin(); in consuming_buffers() [all …]
|
D | timer_queue_set.hpp | 51 timer_queue_base* first_; member in asio::detail::timer_queue_set
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 33 first_ = last_ = nullptr; in clear() 43 first_ = last_ = x; in push_back() 56 first_ = last_ = x; in push_front() 59 x->next = first_; in push_front() 60 first_ = x; in push_front() 67 first_ = first_->next; in pop_front() 68 if (!first_) in pop_front() 73 Item *front() { return first_; } in front() 83 l->last_->next = first_; in append_front() 84 first_ = l->first_; in append_front() [all …]
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | STL.h | 1848 void channelMaskImages(InputIterator first_,InputIterator last_, in channelMaskImages() argument 1855 for (InputIterator iter = first_; iter != last_; ++iter) in channelMaskImages() 1897 bool linkImages(InputIterator first_,InputIterator last_) in linkImages() argument 1908 for (InputIterator iter = first_; iter != last_; ++iter) in linkImages() 1931 void restoreChannelMaskImages(InputIterator first_,InputIterator last_, in restoreChannelMaskImages() argument 1938 for (InputIterator iter = first_; iter != last_; ++iter) in restoreChannelMaskImages() 1951 void unlinkImages(InputIterator first_,InputIterator last_) in unlinkImages() argument 1956 for (InputIterator iter = first_; iter != last_; ++iter) in unlinkImages() 1971 void animateImages( InputIterator first_,InputIterator last_) in animateImages() argument 1973 if (linkImages(first_,last_) == false) in animateImages() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | timer_queue_set.ipp | 24 : first_(0) 30 q->next_ = first_; 31 first_ = q; 36 if (first_) 38 if (q == first_) 40 first_ = q->next_; 45 for (timer_queue_base* p = first_; p->next_; p = p->next_) 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 …]
|
/external/webrtc/talk/media/base/ |
D | hybriddataengine.h | 46 : first_(first), in HybridDataEngine() 48 codecs_ = first_->data_codecs(); in HybridDataEngine() 57 if (first_) { in CreateChannel() 58 channel = first_->CreateChannel(data_channel_type); in CreateChannel() 69 rtc::scoped_ptr<DataEngineInterface> first_;
|
/external/v8/src/profiler/ |
D | unbound-queue-inl.h | 26 first_ = new Node(Record()); 27 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_); 33 while (first_ != NULL) DeleteFirst(); 39 Node* tmp = first_; 40 first_ = tmp->next; 61 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(÷r_))) {
|
D | unbound-queue.h | 37 Node* first_; variable
|
/external/v8/src/crankshaft/ |
D | hydrogen-removable-simulates.cc | 16 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { } in State() 66 if (first_) { in Process() 67 first_ = false; in Process() 107 state->first_ = true; in Finish() 115 first_(other.first_), in State() 166 bool first_; member in v8::internal::State
|
D | hydrogen.h | 69 HInstruction* first() const { return first_; } in first() 212 HInstruction* first_; variable
|
D | hydrogen.cc | 248 first_(NULL), in HBasicBlock() 315 if (first_ == NULL) { in AddInstruction() 326 first_ = last_ = entry; in AddInstruction() 514 DCHECK(IsLoopHeader() || first_ == NULL); in RegisterPredecessor()
|
/external/openfst/src/include/fst/ |
D | string-weight.h | 137 void Init() { first_ = 0; } in Init() 140 void Clear() { first_ = 0; rest_.clear(); } in Clear() 142 size_t Size() const { return first_ ? rest_.size() + 1 : 0; } in Size() 145 if (first_) in PushFront() 146 rest_.push_front(first_); in PushFront() 147 first_ = l; in PushFront() 151 if (!first_) in PushBack() 152 first_ = l; in PushBack() 158 L first_; // first label in string (0 if empty) 168 : first_(w.first_), rest_(w.rest_), init_(true), in StringWeightIterator() [all …]
|
D | sparse-tuple-weight.h | 113 ReadType(strm, &first_); in Read() 119 WriteType(strm, first_); in Write() 173 first_.first = kNoKey; in Init() 180 if (first_.first == kNoKey) in Size() 192 if (first_.first == kNoKey) { 193 first_ = p; 218 Pair first_; variable 233 : first_(w.first_), rest_(w.rest_), init_(true), in SparseTupleWeightIterator() 238 return first_.first == SparseTupleWeight<W, K>::kNoKey; in Done() 243 const Pair& Value() const { return init_ ? first_ : *iter_; } in Value() [all …]
|
D | bi-table.h | 489 ErasableBiTable() : first_(0) {} in ErasableBiTable() 496 id_ref = id2entry_.size() + first_; 504 const T &FindEntry(I s) const { return id2entry_[s - first_]; } in FindEntry() 509 T &entry = id2entry_[s - first_]; in Erase() 513 id2entry_[s - first_] = empty_entry_; in Erase() 516 ++first_; in Erase() 524 I first_; // I of first element in the deque; variable
|
/external/vixl/test/ |
D | test-runner.cc | 33 vixl::Test* vixl::Test::first_ = NULL; member in vixl::Test 57 if (first_ == NULL) { in Test() 59 first_ = this; in Test()
|
D | test-runner.h | 44 static Test* first() { return first_; } in first() 69 static Test* first_; variable
|
/external/v8/test/cctest/ |
D | cctest.h | 229 prev_ = first_; in RegisterThreadedTest() 230 first_ = this; in RegisterThreadedTest() 236 RegisterThreadedTest* current = first_; in nth() 248 static RegisterThreadedTest* first_;
|
D | cctest.cc | 261 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; member in RegisterThreadedTest
|
/external/libweave/third_party/chromium/base/ |
D | values.cc | 76 explicit ValueEquals(const Value* first) : first_(first) { } in ValueEquals() 79 return first_->Equals(second); in operator ()() 83 const Value* first_; member in base::__anon3bbab2aa0111::ValueEquals
|
/external/libchrome/base/ |
D | values.cc | 76 explicit ValueEquals(const Value* first) : first_(first) { } in ValueEquals() 79 return first_->Equals(second); in operator ()() 83 const Value* first_; member in base::__anonb38d8e240111::ValueEquals
|
/external/v8/src/regexp/ |
D | jsregexp.h | 238 OutSet() : first_(0), remaining_(NULL), successors_(NULL) { } in OutSet() 255 : first_(first), remaining_(remaining), successors_(NULL) { } in OutSet() 256 uint32_t first_; variable
|
D | jsregexp.cc | 4516 : first_(true), in TableEntryHeaderPrinter() 4519 if (first_) { in Call() 4520 first_ = false; in Call() 4538 bool first_; member in v8::internal::TableEntryHeaderPrinter 4547 first_(true) {} in AttributePrinter() 4549 if (first_) { in PrintSeparator() 4550 first_ = false; in PrintSeparator() 4568 bool first_; member in v8::internal::AttributePrinter 6149 OutSet* result = new(zone) OutSet(first_, remaining_); in Extend() 6158 first_ |= (1 << value); in Set() [all …]
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-matchers.h | 2654 first_(first), count_(count) {} 2662 return MakeMatcher(new ElementsAreMatcherImpl<Container>(first_, count_)); 2666 const T* const first_;
|
/external/v8/src/ |
D | code-stubs.cc | 4095 explicit SimpleListPrinter(std::ostream& os) : os_(os), first_(true) {} in SimpleListPrinter() 4098 if (first_) { in Add() 4099 first_ = false; in Add() 4108 bool first_; member in v8::internal::SimpleListPrinter
|
D | objects-inl.h | 7880 first_(first), in SubStringRange() 7918 return String::SubStringRange::iterator(string_, first_); in begin() 7923 return String::SubStringRange::iterator(string_, first_ + length_); in end()
|