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

1 2 3

  /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.h 104 scoped_refptr<PlatformDelegate> impl_; member in class:base::FilePathWatcher
  /system/core/gatekeeperd/
SoftGateKeeperDevice.h 34 impl_.reset(new SoftGateKeeper());
71 UniquePtr<SoftGateKeeper> impl_; member in class:android::SoftGateKeeperDevice
  /external/libbrillo/brillo/streams/
tls_stream.h 78 std::unique_ptr<TlsStreamImpl> impl_; member in class:brillo::TlsStream
  /external/libchrome/base/synchronization/
condition_variable.h 103 ConditionVarImpl* impl_; member in class:base::ConditionVariable
  /external/opencv3/modules/cudacodec/src/
thread.hpp 65 cv::Ptr<Impl> impl_; member in class:cv::cudacodec::detail::Thread
  /system/core/libmemunreachable/
ThreadCapture.h 51 Allocator<ThreadCaptureImpl>::unique_ptr impl_; member in class:ThreadCapture
Allocator.h 45 // Copy constructor that does not take ownership of impl_
46 Heap(const Heap& other) : impl_(other.impl_), owns_impl_(false) {}
69 return impl_ == other.impl_;
82 HeapImpl* impl = impl_;
99 HeapImpl* impl_; variable
  /external/opencv3/modules/viz/include/opencv2/viz/
viz3d.hpp 314 VizImpl* impl_; member in class:cv::viz::Viz3d
  /external/ceres-solver/include/ceres/
covariance.h 377 internal::scoped_ptr<internal::CovarianceImpl> impl_; member in class:ceres::Covariance
  /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.h 221 MobileOperatorInfoImpl* impl() { return impl_.get(); }
224 std::unique_ptr<MobileOperatorInfoImpl> impl_; member in class:shill::MobileOperatorInfo
  /system/keymaster/include/keymaster/
soft_keymaster_device.h 79 impl_->GetVersion(req, rsp);
246 UniquePtr<AndroidKeymaster> impl_; member in class:keymaster::SoftKeymasterDevice
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util.h 118 Impl *impl_; member in class:ScopedThread
  /external/parameter-framework/asio-1.10.6/include/asio/
io_service.hpp 592 impl_type& impl_; member in class:asio::io_service
  /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/webp/src/utils/
thread.h 43 WebPWorkerImpl* impl_; member in struct:__anon26183
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
iter_fold_if_impl.hpp 98 >::template result_< Iterator,State,ForwardOp,mpl::next<Iterator> > impl_; typedef in struct:boost::mpl::aux::iter_fold_if_forward_step
100 typedef typename impl_::state state;
101 typedef typename impl_::iterator iterator;
115 >::template result_< Iterator,State,BackwardOp,identity<Iterator> > impl_; typedef in struct:boost::mpl::aux::iter_fold_if_backward_step
117 typedef typename impl_::state state;
118 typedef typename impl_::iterator iterator;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_if_impl.hpp 65 >::template result_< Iterator,State,ForwardOp, mpl::next<Iterator> > impl_; typedef in struct:boost::mpl::aux::iter_fold_if_forward_step
67 typedef typename impl_::state state;
68 typedef typename impl_::iterator iterator;
82 >::template result_< Iterator,State,BackwardOp, identity<Iterator> > impl_; typedef in struct:boost::mpl::aux::iter_fold_if_backward_step
84 typedef typename impl_::state state;
85 typedef typename impl_::iterator iterator;
  /external/google-breakpad/src/third_party/linux/include/gflags/
gflags.h 281 class FlagSaverImpl* impl_; // we use pimpl here to keep API steady member in class:google::FlagSaver
  /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/libyuv/files/third_party/gflags/gen/posix/include/gflags/
gflags.h 283 class FlagSaverImpl* impl_; // we use pimpl here to keep API steady member in class:GFLAGS_NAMESPACE::FlagSaver
  /external/libyuv/files/third_party/gflags/gen/win/include/gflags/
gflags.h 283 class FlagSaverImpl* impl_; // we use pimpl here to keep API steady member in class:GFLAGS_NAMESPACE::FlagSaver

Completed in 423 milliseconds

1 2 3