HomeSort by relevance Sort by last modified time
    Searched defs:first_ (Results 1 - 16 of 16) sorted by null

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
timer_queue_set.hpp 51 timer_queue_base* first_; member in class:asio::detail::timer_queue_set
consuming_buffers.hpp 58 first_(buffer(first, max_size)),
113 || offset_ + buffer_size(first_) >= max_size_)
119 offset_ += buffer_size(first_);
120 first_ = buffer(*begin_remainder_++, max_size_ - offset_);
130 && buffer_cast<const void*>(first_)
131 == buffer_cast<const void*>(other.first_)
132 && buffer_size(first_) == buffer_size(other.first_)
139 return first_;
143 Buffer first_; member in class:asio::detail::consuming_buffers_iterator
256 Buffer first_; member in class:asio::detail::consuming_buffers
    [all...]
  /external/v8/src/profiler/
unbound-queue.h 37 Node* first_; member in class:v8::internal::BASE_EMBEDDED
  /external/webrtc/talk/media/base/
hybriddataengine.h 46 : first_(first),
48 codecs_ = first_->data_codecs();
57 if (first_) {
58 channel = first_->CreateChannel(data_channel_type);
69 rtc::scoped_ptr<DataEngineInterface> first_; member in class:cricket::HybridDataEngine
  /art/runtime/base/
iteration_range.h 35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { }
37 iterator begin() const { return first_; }
39 iterator cbegin() const { return first_; }
43 const iterator first_; member in class:art::IterationRange
  /external/vixl/test/
test-runner.cc 34 vixl::Test* vixl::Test::first_ = NULL; member in class:vixl::Test
62 if (first_ == NULL) {
64 first_ = this;
test-runner.h 44 static Test* first() { return first_; }
75 static Test* first_; member in class:vixl::Test
  /bionic/libc/bionic/
pthread_atfork.cpp 48 constexpr atfork_list_t() : first_(nullptr), last_(nullptr) {}
52 for (atfork_t* it = first_; it != nullptr; it = it->next) {
70 if (first_ == nullptr) {
71 first_ = entry;
78 atfork_t* it = first_;
95 first_ = entry->next;
107 atfork_t* first_; member in class:atfork_list_t
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 33 first_ = last_ = nullptr;
43 first_ = last_ = x;
56 first_ = last_ = x;
59 x->next = first_;
60 first_ = x;
67 first_ = first_->next;
68 if (!first_)
73 Item *front() { return first_; }
74 const Item *front() const { return first_; }
150 Item *first_; member in struct:__sanitizer::IntrusiveList
    [all...]
  /external/v8/src/crankshaft/
hydrogen-removable-simulates.cc 17 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { }
67 if (first_) {
68 first_ = false;
108 state->first_ = true;
116 first_(other.first_),
167 bool first_; member in class:v8::internal::State
hydrogen.h 71 HInstruction* first() const { return first_; }
214 HInstruction* first_; member in class:v8::internal::final
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
variant.h 141 : first_(std::forward<T>(value)) {
146 : first_(std::forward<T>(value)) {
151 new (&first_) Type(other.first_);
155 new (&first_) Type(std::move(other.first_));
162 Type& get(TypeTag<Type>) { return first_; }
163 const Type& get(TypeTag<Type>) const { return first_; }
169 new (&first_) Type(std::forward<Args>(args)...);
174 new (&first_) Type(std::forward<Args>(args)...)
235 Type first_; member in union:android::pdx::rpc::detail::Union
396 First first_; member in union:android::pdx::rpc::detail::Union
    [all...]
  /art/compiler/utils/
intrusive_forward_list.h 151 IntrusiveForwardList(IntrusiveForwardList&& src) : first_(src.first_.next_hook) {
152 src.first_.next_hook = nullptr;
163 iterator before_begin() { return iterator(&first_); }
164 const_iterator before_begin() const { return const_iterator(&first_); }
165 iterator begin() { return iterator(first_.next_hook); }
166 const_iterator begin() const { return const_iterator(first_.next_hook); }
169 const_iterator cbefore_begin() const { return const_iterator(&first_); }
170 const_iterator cbegin() const { return const_iterator(first_.next_hook); }
218 std::swap(first_.next_hook, other.first_.next_hook)
396 IntrusiveForwardListHook first_; member in class:art::IntrusiveForwardList
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-matchers.h 2666 const T* const first_; member in class:testing::internal::ElementsAreArrayMatcher
    [all...]
  /external/v8/src/regexp/
jsregexp.h 187 OutSet() : first_(0), remaining_(NULL), successors_(NULL) { }
204 : first_(first), remaining_(remaining), successors_(NULL) { }
205 uint32_t first_; member in class:v8::internal::OutSet
    [all...]
jsregexp.cc 4534 bool first_; member in class:v8::internal::TableEntryHeaderPrinter
4564 bool first_; member in class:v8::internal::AttributePrinter
    [all...]

Completed in 406 milliseconds