HomeSort by relevance Sort by last modified time
    Searched refs:impl_ (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/libchrome/base/files/
file_path_watcher_mac.cc 23 DCHECK(!impl_.get());
28 impl_ = new FilePathWatcherFSEvents();
31 impl_ = new FilePathWatcherKQueue();
33 DCHECK(impl_.get());
34 return impl_->Watch(path, recursive, callback);
38 if (impl_.get())
39 impl_->Cancel();
44 if (impl_.get())
45 impl_->Cancel();
52 scoped_refptr<PlatformDelegate> impl_; member in class:base::__anon14253::FilePathWatcherImpl
    [all...]
file_path_watcher.cc 21 impl_->Cancel();
54 return impl_->Watch(path, recursive, callback);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_endpoint.hpp 50 : impl_()
72 : impl_(internet_protocol.family(), port_num)
80 : impl_(addr, port_num)
86 : impl_(other.impl_)
92 : impl_(other.impl_)
99 impl_ = other.impl_;
106 impl_ = other.impl_
218 asio::ip::detail::endpoint impl_; member in class:asio::ip::basic_endpoint
    [all...]
  /external/opencv3/modules/viz/src/
viz3d.cpp 48 cv::viz::Viz3d::Viz3d(const String& window_name) : impl_(0) { create(window_name); }
50 cv::viz::Viz3d::Viz3d(const Viz3d& other) : impl_(other.impl_)
52 if (impl_)
53 CV_XADD(&impl_->ref_counter, 1);
61 impl_ = other.impl_;
62 if (impl_)
63 CV_XADD(&impl_->ref_counter, 1);
72 if (impl_)
    [all...]
  /external/libvpx/libvpx/vpx_util/
vpx_thread.c 37 pthread_mutex_lock(&worker->impl_->mutex_);
39 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
48 pthread_cond_signal(&worker->impl_->condition_);
49 pthread_mutex_unlock(&worker->impl_->mutex_);
60 if (worker->impl_ == NULL) return;
62 pthread_mutex_lock(&worker->impl_->mutex_);
66 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
71 pthread_cond_signal(&worker->impl_->condition_)
    [all...]
  /external/webrtc/webrtc/base/
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)
452 rtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:rtc::scoped_ptr
580 rtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:rtc::scoped_ptr
    [all...]
cryptstring.cc 37 CryptString::CryptString() : impl_(new EmptyCryptStringImpl()) {
41 : impl_(other.impl_->Copy()) {
44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) {
  /external/ceres-solver/internal/ceres/
covariance.cc 42 impl_.reset(new internal::CovarianceImpl(options));
51 return impl_->Compute(covariance_blocks, problem->problem_impl_.get());
57 return impl_->GetCovarianceBlock(parameter_block1,
  /external/gmock/include/gmock/
gmock-cardinalities.h 90 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {}
94 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); }
95 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); }
99 return impl_->IsSatisfiedByCallCount(call_count);
104 return impl_->IsSaturatedByCallCount(call_count);
110 return impl_->IsSaturatedByCallCount(call_count) &&
111 !impl_->IsSatisfiedByCallCount(call_count);
115 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
122 internal::linked_ptr<const CardinalityInterface> impl_; member in class:testing::Cardinality
  /external/google-breakpad/src/testing/include/gmock/
gmock-cardinalities.h 90 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {}
94 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); }
95 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); }
99 return impl_->IsSatisfiedByCallCount(call_count);
104 return impl_->IsSaturatedByCallCount(call_count);
110 return impl_->IsSaturatedByCallCount(call_count) &&
111 !impl_->IsSatisfiedByCallCount(call_count);
115 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
122 internal::linked_ptr<const CardinalityInterface> impl_; member in class:testing::Cardinality
  /system/connectivity/shill/cellular/
mobile_operator_info.cc 40 // MobileOperatorInfo simply forwards all operations to |impl_|.
46 : impl_(new MobileOperatorInfoImpl(dispatcher, info_owner)) {}
51 return impl_->info_owner() + ": " + func;
56 impl_->ClearDatabasePaths();
62 impl_->AddDatabasePath(absolute_path);
66 auto result = impl_->Init();
73 impl_->AddObserver(observer);
79 impl_->RemoveObserver(observer);
83 auto result = impl_->IsMobileNetworkOperatorKnown();
89 auto result = impl_->IsMobileVirtualNetworkOperatorKnown()
    [all...]
  /external/libchrome/base/memory/
scoped_ptr.h 254 scoped_ptr() : impl_(nullptr) {}
257 explicit scoped_ptr(element_type* p) : impl_(p) {}
260 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {}
263 scoped_ptr(std::nullptr_t) : impl_(nullptr) {}
273 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {}
301 : impl_(&other.impl_) {}
313 impl_.TakeState(&rhs.impl_);
400 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
494 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
    [all...]
  /external/libweave/third_party/chromium/base/memory/
scoped_ptr.h 254 scoped_ptr() : impl_(nullptr) {}
257 explicit scoped_ptr(element_type* p) : impl_(p) {}
260 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {}
263 scoped_ptr(std::nullptr_t) : impl_(nullptr) {}
273 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {}
301 : impl_(&other.impl_) {}
313 impl_.TakeState(&rhs.impl_);
400 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
494 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
    [all...]
  /external/webp/src/utils/
thread.c 211 pthread_mutex_lock(&worker->impl_->mutex_);
213 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
222 pthread_cond_signal(&worker->impl_->condition_);
223 pthread_mutex_unlock(&worker->impl_->mutex_);
234 if (worker->impl_ == NULL) return;
236 pthread_mutex_lock(&worker->impl_->mutex_);
240 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
245 pthread_cond_signal(&worker->impl_->condition_)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_rtcp_impl_unittest.cc 111 impl_.reset(new ModuleRtpRtcpImpl(config));
112 impl_->SetRTCPStatus(RtcpMode::kCompound);
122 rtc::scoped_ptr<ModuleRtpRtcpImpl> impl_; member in class:webrtc::__anon26696::RtpRtcpModule
127 impl_->SetRemoteSSRC(ssrc);
143 return counter_map_[impl_->SSRC()];
167 EXPECT_EQ(0, sender_.impl_->SetSendingStatus(true));
168 sender_.impl_->SetSendingMediaStatus(true);
169 sender_.impl_->SetSSRC(kSenderSsrc);
171 sender_.impl_->SetSequenceNumber(kSequenceNumber);
172 sender_.impl_->SetStorePacketsStatus(true, 100)
    [all...]
  /system/core/gatekeeperd/
SoftGateKeeperDevice.h 34 impl_.reset(new SoftGateKeeper());
71 UniquePtr<SoftGateKeeper> impl_; member in class:android::SoftGateKeeperDevice
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 80 impl_(&copying_input_, block_size) {
90 return impl_.Next(data, size);
94 impl_.BackUp(count);
98 return impl_.Skip(count);
102 return impl_.ByteCount();
176 impl_(&copying_output_, block_size) {
180 impl_.Flush();
184 bool flush_succeeded = impl_.Flush();
189 return impl_.Flush();
193 return impl_.Next(data, size)
    [all...]
  /external/opencv3/modules/cudacodec/src/
thread.hpp 65 cv::Ptr<Impl> impl_; member in class:cv::cudacodec::detail::Thread
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 104 // ParamIterator assumes ownership of the impl_ pointer.
105 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
108 impl_.reset(other.impl_->Clone());
112 const T& operator*() const { return *impl_->Current(); }
113 const T* operator->() const { return impl_->Current(); }
116 impl_->Advance();
121 ParamIteratorInterface<T>* clone = impl_->Clone();
122 impl_->Advance()
135 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
174 ::testing::internal::linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]

Completed in 475 milliseconds

1 2 3 4 5