/external/libchrome/base/task/sequence_manager/ |
D | task_queue.cc | 17 : impl_(std::move(impl)), in TaskQueue() 19 sequence_manager_(impl_ ? impl_->GetSequenceManagerWeakPtr() : nullptr), in TaskQueue() 21 impl_ ? impl_->GetGracefulQueueShutdownHelper() : nullptr) {} in TaskQueue() 25 if (!impl_) in ~TaskQueue() 27 if (impl_->IsUnregistered()) in ~TaskQueue() 80 if (!impl_) in ShutdownTaskQueue() 83 impl_.reset(); in ShutdownTaskQueue() 86 impl_->SetBlameContext(nullptr); in ShutdownTaskQueue() 87 impl_->SetOnTaskStartedHandler( in ShutdownTaskQueue() 89 impl_->SetOnTaskCompletedHandler( in ShutdownTaskQueue() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
D | basic_endpoint.hpp | 50 : impl_() in basic_endpoint() 72 : impl_(internet_protocol.family(), port_num) in basic_endpoint() 80 : impl_(addr, port_num) in basic_endpoint() 86 : impl_(other.impl_) in basic_endpoint() 92 : impl_(other.impl_) in basic_endpoint() 99 impl_ = other.impl_; in operator =() 106 impl_ = other.impl_; in operator =() 113 if (impl_.is_v4()) in protocol() 121 return impl_.data(); in data() 127 return impl_.data(); in data() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/generic/ |
D | basic_endpoint.hpp | 57 : impl_(socket_address, socket_address_size, socket_protocol) in basic_endpoint() 64 : impl_(endpoint.data(), endpoint.size(), endpoint.protocol().protocol()) in basic_endpoint() 70 : impl_(other.impl_) in basic_endpoint() 76 : impl_(other.impl_) in basic_endpoint() 83 impl_ = other.impl_; in operator =() 90 impl_ = other.impl_; in operator =() 97 return protocol_type(impl_.family(), impl_.protocol()); in protocol() 103 return impl_.data(); in data() 109 return impl_.data(); in data() 115 return impl_.size(); in size() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/local/ |
D | basic_endpoint.hpp | 57 : impl_(path_name) in basic_endpoint() 63 : impl_(path_name) in basic_endpoint() 69 : impl_(other.impl_) in basic_endpoint() 75 : impl_(other.impl_) in basic_endpoint() 82 impl_ = other.impl_; in operator =() 89 impl_ = other.impl_; in operator =() 102 return impl_.data(); in data() 108 return impl_.data(); in data() 114 return impl_.size(); in size() 120 impl_.resize(new_size); in resize() [all …]
|
/external/grpc-grpc/test/cpp/qps/ |
D | histogram.h | 32 : impl_(grpc_histogram_create(default_resolution(), in Histogram() 35 if (impl_) grpc_histogram_destroy(impl_); in ~Histogram() 38 if (impl_) grpc_histogram_destroy(impl_); in Reset() 39 impl_ = grpc_histogram_create(default_resolution(), default_max_possible()); in Reset() 42 Histogram(Histogram&& other) : impl_(other.impl_) { other.impl_ = nullptr; } in Histogram() 44 void Merge(const Histogram& h) { grpc_histogram_merge(impl_, h.impl_); } in Merge() 45 void Add(double value) { grpc_histogram_add(impl_, value); } in Add() 47 return grpc_histogram_percentile(impl_, pctile); in Percentile() 49 double Count() const { return grpc_histogram_count(impl_); } in Count() 50 void Swap(Histogram* other) { std::swap(impl_, other->impl_); } in Swap() [all …]
|
/external/libvpx/libvpx/vpx_util/ |
D | vpx_thread.c | 36 pthread_mutex_lock(&worker->impl_->mutex_); in thread_loop() 38 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); in thread_loop() 47 pthread_cond_signal(&worker->impl_->condition_); in thread_loop() 48 pthread_mutex_unlock(&worker->impl_->mutex_); in thread_loop() 58 if (worker->impl_ == NULL) return; in change_state() 60 pthread_mutex_lock(&worker->impl_->mutex_); in change_state() 64 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); in change_state() 69 pthread_cond_signal(&worker->impl_->condition_); in change_state() 72 pthread_mutex_unlock(&worker->impl_->mutex_); in change_state() 97 worker->impl_ = (VPxWorkerImpl *)vpx_calloc(1, sizeof(*worker->impl_)); in reset() [all …]
|
/external/libaom/libaom/aom_util/ |
D | aom_thread.c | 67 pthread_mutex_lock(&worker->impl_->mutex_); in thread_loop() 69 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); in thread_loop() 78 pthread_cond_signal(&worker->impl_->condition_); in thread_loop() 79 pthread_mutex_unlock(&worker->impl_->mutex_); in thread_loop() 89 if (worker->impl_ == NULL) return; in change_state() 91 pthread_mutex_lock(&worker->impl_->mutex_); in change_state() 95 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); in change_state() 100 pthread_cond_signal(&worker->impl_->condition_); in change_state() 103 pthread_mutex_unlock(&worker->impl_->mutex_); in change_state() 128 worker->impl_ = (AVxWorkerImpl *)aom_calloc(1, sizeof(*worker->impl_)); in reset() [all …]
|
/external/webrtc/webrtc/base/ |
D | scoped_ptr.h | 322 scoped_ptr() : impl_(nullptr) {} 325 explicit scoped_ptr(element_type* p) : impl_(p) {} 328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {} 331 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} 345 : impl_(&other.impl_) { 362 impl_.TakeState(&rhs.impl_); 385 void reset(element_type* p = nullptr) { impl_.reset(p); } 390 assert(impl_.get() != nullptr); 391 return *impl_.get(); 394 assert(impl_.get() != nullptr); [all …]
|
/external/bcc/src/cc/ |
D | table_storage.cc | 33 void TableStorage::Init(unique_ptr<TableStorageImpl> impl) { impl_ = move(impl); } in Init() 35 return impl_->Find(path.to_string(), result); in Find() 38 return impl_->Insert(path.to_string(), move(desc)); in Insert() 40 bool TableStorage::Delete(const Path &path) { return impl_->Delete(path.to_string()); } in Delete() 46 it = impl_->erase(*it.impl_); in DeletePrefix() 61 TableStorage::iterator TableStorage::begin() { return impl_->begin(); } in begin() 62 TableStorage::iterator TableStorage::end() { return impl_->end(); } in end() 64 return impl_->lower_bound(p.to_string()); in lower_bound() 67 return impl_->upper_bound(p.to_string() + "\x7f"); in upper_bound() 72 TableStorage::iterator::iterator(unique_ptr<TableStorageIteratorImpl> impl) : impl_(move(impl)) {} in iterator() [all …]
|
/external/grpc-grpc/src/core/lib/gprpp/ |
D | thd.h | 53 Thread() : state_(FAKE), impl_(nullptr) {} in Thread() 65 Thread(Thread&& other) : state_(other.state_), impl_(other.impl_) { in Thread() 67 other.impl_ = nullptr; in Thread() 81 impl_ = other.impl_; 83 other.impl_ = nullptr; 91 ~Thread() { GPR_ASSERT(impl_ == nullptr); } in ~Thread() 94 if (impl_ != nullptr) { in Start() 97 impl_->Start(); in Start() 104 if (impl_ != nullptr) { in Join() 105 impl_->Join(); in Join() [all …]
|
/external/deqp-deps/amber/src/ |
D | recipe.cc | 22 Recipe::Recipe() : impl_(nullptr) {} in Recipe() 25 delete impl_; in ~Recipe() 29 if (!impl_) in GetShaderInfo() 31 return impl_->GetShaderInfo(); in GetShaderInfo() 35 return impl_ ? impl_->GetRequiredFeatures() : std::vector<std::string>(); in GetRequiredFeatures() 39 return impl_ ? impl_->GetRequiredDeviceExtensions() in GetRequiredDeviceExtensions() 44 return impl_ ? impl_->GetRequiredInstanceExtensions() in GetRequiredInstanceExtensions() 49 if (impl_) in SetFenceTimeout() 50 impl_->SetFenceTimeout(timeout_ms); in SetFenceTimeout()
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | rtp_rtcp_impl_unittest.cc | 111 impl_.reset(new ModuleRtpRtcpImpl(config)); in RtpRtcpModule() 112 impl_->SetRTCPStatus(RtcpMode::kCompound); in RtpRtcpModule() 122 rtc::scoped_ptr<ModuleRtpRtcpImpl> impl_; member in webrtc::__anona577c23f0111::RtpRtcpModule 127 impl_->SetRemoteSSRC(ssrc); in SetRemoteSsrc() 143 return counter_map_[impl_->SSRC()]; in RtcpReceived() 167 EXPECT_EQ(0, sender_.impl_->SetSendingStatus(true)); in RtpRtcpImplTest() 168 sender_.impl_->SetSendingMediaStatus(true); in RtpRtcpImplTest() 169 sender_.impl_->SetSSRC(kSenderSsrc); in RtpRtcpImplTest() 171 sender_.impl_->SetSequenceNumber(kSequenceNumber); in RtpRtcpImplTest() 172 sender_.impl_->SetStorePacketsStatus(true, 100); in RtpRtcpImplTest() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | replayer.cpp | 56 : impl_(MakeUnique<Impl>(env, validate_during_replay, validator_options)) {} in Replayer() 61 impl_->consumer = std::move(c); in SetMessageConsumer() 74 spvtools::SpirvTools tools(impl_->target_env); in Run() 76 impl_->consumer(SPV_MSG_ERROR, nullptr, {}, in Run() 83 impl_->validator_options)) { in Run() 84 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 91 impl_->target_env, impl_->consumer, binary_in.data(), binary_in.size()); in Run() 97 if (impl_->validate_during_replay) { in Run() 102 fact_manager.AddFacts(impl_->consumer, initial_facts, ir_context.get()); in Run() 104 impl_->validator_options); in Run() [all …]
|
D | shrinker.cpp | 82 : impl_(MakeUnique<Impl>(env, step_limit, validate_during_replay, in Shrinker() 88 impl_->consumer = std::move(c); in SetMessageConsumer() 102 spvtools::SpirvTools tools(impl_->target_env); in Run() 104 impl_->consumer(SPV_MSG_ERROR, nullptr, {}, in Run() 111 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 123 if (Replayer(impl_->target_env, impl_->validate_during_replay, in Run() 124 impl_->validator_options) in Run() 134 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 152 while (attempt < impl_->step_limit && in Run() 182 attempt < impl_->step_limit && chunk_index >= 0; chunk_index--) { in Run() [all …]
|
/external/angle/third_party/spirv-tools/src/source/fuzz/ |
D | replayer.cpp | 56 : impl_(MakeUnique<Impl>(env, validate_during_replay, validator_options)) {} in Replayer() 61 impl_->consumer = std::move(c); in SetMessageConsumer() 74 spvtools::SpirvTools tools(impl_->target_env); in Run() 76 impl_->consumer(SPV_MSG_ERROR, nullptr, {}, in Run() 83 impl_->validator_options)) { in Run() 84 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 91 impl_->target_env, impl_->consumer, binary_in.data(), binary_in.size()); in Run() 97 if (impl_->validate_during_replay) { in Run() 102 fact_manager.AddFacts(impl_->consumer, initial_facts, ir_context.get()); in Run() 104 impl_->validator_options); in Run() [all …]
|
D | shrinker.cpp | 82 : impl_(MakeUnique<Impl>(env, step_limit, validate_during_replay, in Shrinker() 88 impl_->consumer = std::move(c); in SetMessageConsumer() 102 spvtools::SpirvTools tools(impl_->target_env); in Run() 104 impl_->consumer(SPV_MSG_ERROR, nullptr, {}, in Run() 111 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 123 if (Replayer(impl_->target_env, impl_->validate_during_replay, in Run() 124 impl_->validator_options) in Run() 134 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 152 while (attempt < impl_->step_limit && in Run() 182 attempt < impl_->step_limit && chunk_index >= 0; chunk_index--) { in Run() [all …]
|
/external/protobuf/src/google/protobuf/io/ |
D | zero_copy_stream_impl.cc | 84 : copying_input_(file_descriptor), impl_(©ing_input_, block_size) {} in FileInputStream() 89 return impl_.Next(data, size); in Next() 92 void FileInputStream::BackUp(int count) { impl_.BackUp(count); } in BackUp() 94 bool FileInputStream::Skip(int count) { return impl_.Skip(count); } in Skip() 96 int64 FileInputStream::ByteCount() const { return impl_.ByteCount(); } in ByteCount() 166 : copying_output_(file_descriptor), impl_(©ing_output_, block_size) {} in FileOutputStream() 168 FileOutputStream::~FileOutputStream() { impl_.Flush(); } in ~FileOutputStream() 171 bool flush_succeeded = impl_.Flush(); in Close() 175 bool FileOutputStream::Flush() { return impl_.Flush(); } in Flush() 178 return impl_.Next(data, size); in Next() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | shrinker.cpp | 76 : impl_(MakeUnique<Impl>(env, step_limit, validate_during_replay)) {} in Shrinker() 81 impl_->consumer = std::move(c); in SetMessageConsumer() 95 spvtools::SpirvTools tools(impl_->target_env); in Run() 97 impl_->consumer(SPV_MSG_ERROR, nullptr, {}, in Run() 104 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 116 if (Replayer(impl_->target_env, impl_->validate_during_replay) in Run() 126 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 144 while (attempt < impl_->step_limit && in Run() 174 attempt < impl_->step_limit && chunk_index >= 0; chunk_index--) { in Run() 187 if (Replayer(impl_->target_env, false) in Run() [all …]
|
D | replayer.cpp | 51 : impl_(MakeUnique<Impl>(env, validate_during_replay)) {} in Replayer() 56 impl_->consumer = std::move(c); in SetMessageConsumer() 69 spvtools::SpirvTools tools(impl_->target_env); in Run() 71 impl_->consumer(SPV_MSG_ERROR, nullptr, {}, in Run() 78 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run() 85 impl_->target_env, impl_->consumer, binary_in.data(), binary_in.size()); in Run() 91 if (impl_->validate_during_replay) { in Run() 96 fact_manager.AddFacts(impl_->consumer, initial_facts, ir_context.get()); in Run() 109 if (impl_->validate_during_replay) { in Run() 116 impl_->consumer(SPV_MSG_INFO, nullptr, {}, in Run()
|
/external/v8/src/base/ |
D | hashmap.h | 104 DCHECK_NOT_NULL(impl_.map_); in Invalidate() 105 impl_.allocator().DeleteArray(impl_.map_, capacity()); in Invalidate() 106 impl_ = Impl(impl_.match(), AllocationPolicy()); in Invalidate() 110 uint32_t occupancy() const { return impl_.occupancy_; } in occupancy() 115 uint32_t capacity() const { return impl_.capacity_; } in capacity() 128 AllocationPolicy allocator() const { return impl_.allocator(); } in allocator() 134 Entry* map_end() const { return impl_.map_ + impl_.capacity_; } in map_end() 180 } impl_; variable 187 : impl_(std::move(match), std::move(allocator)) { in TemplateHashMapImpl() 196 : impl_(original->impl_.match(), std::move(allocator)) { in TemplateHashMapImpl() [all …]
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-cardinalities.h | 90 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {} in Cardinality() 94 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); } in ConservativeLowerBound() 95 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); } in ConservativeUpperBound() 99 return impl_->IsSatisfiedByCallCount(call_count); in IsSatisfiedByCallCount() 104 return impl_->IsSaturatedByCallCount(call_count); in IsSaturatedByCallCount() 110 return impl_->IsSaturatedByCallCount(call_count) && in IsOverSaturatedByCallCount() 111 !impl_->IsSatisfiedByCallCount(call_count); in IsOverSaturatedByCallCount() 115 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } in DescribeTo() 122 internal::linked_ptr<const CardinalityInterface> impl_;
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/ |
D | gmock-cardinalities.h | 90 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {} in Cardinality() 94 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); } in ConservativeLowerBound() 95 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); } in ConservativeUpperBound() 99 return impl_->IsSatisfiedByCallCount(call_count); in IsSatisfiedByCallCount() 104 return impl_->IsSaturatedByCallCount(call_count); in IsSaturatedByCallCount() 110 return impl_->IsSaturatedByCallCount(call_count) && in IsOverSaturatedByCallCount() 111 !impl_->IsSatisfiedByCallCount(call_count); in IsOverSaturatedByCallCount() 115 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } in DescribeTo() 122 internal::linked_ptr<const CardinalityInterface> impl_;
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_test_util_posix.cc | 408 impl_ = new Impl; in ScopedThread() 409 impl_->main = main; in ScopedThread() 410 impl_->detached = detached; in ScopedThread() 411 atomic_store(&impl_->event, 0, memory_order_relaxed); in ScopedThread() 418 __interceptor_pthread_create(&impl_->thread, &attr, in ScopedThread() 419 ScopedThread::Impl::ScopedThreadCallback, impl_); in ScopedThread() 424 if (!impl_->main) { in ~ScopedThread() 426 impl_->send(&event); in ~ScopedThread() 427 if (!impl_->detached) in ~ScopedThread() 428 __interceptor_pthread_join(impl_->thread, 0); in ~ScopedThread() [all …]
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-cardinalities.h | 96 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {} in Cardinality() 100 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); } in ConservativeLowerBound() 101 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); } in ConservativeUpperBound() 106 return impl_->IsSatisfiedByCallCount(call_count); in IsSatisfiedByCallCount() 112 return impl_->IsSaturatedByCallCount(call_count); in IsSaturatedByCallCount() 118 return impl_->IsSaturatedByCallCount(call_count) && in IsOverSaturatedByCallCount() 119 !impl_->IsSatisfiedByCallCount(call_count); in IsOverSaturatedByCallCount() 123 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } in DescribeTo() 130 std::shared_ptr<const CardinalityInterface> impl_;
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | resource_operation_safety_analysis.cc | 167 if (other.impl_ == impl_) { in Add() 172 if (!impl_) { in Add() 174 impl_ = other.impl_; in Add() 191 impl_->insert(resource_op); in Add() 195 return impl_ ? impl_->begin() : GetEmptyImpl()->begin(); in begin() 199 return impl_ ? impl_->end() : GetEmptyImpl()->end(); in end() 203 return impl_ != nullptr && impl_->count(resource_op); in Contains() 215 impl_ = storage_.get(); in EnsureIsCopied() 224 Impl* impl_ = nullptr; member in tensorflow::__anon8a83615a0111::ResourceOpSet
|