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

12 3 4 5

  /external/webrtc/talk/media/devices/
macdevicemanager.cc 55 DeviceWatcherImpl* impl_; member in class:cricket::MacDeviceWatcher
176 impl_(NULL) {
183 if (!impl_) {
184 impl_ = CreateDeviceWatcherCallback(manager_);
186 return impl_ != NULL;
190 if (impl_) {
191 ReleaseDeviceWatcherCallback(impl_);
192 impl_ = NULL;
  /external/webrtc/webrtc/base/
cryptstring.h 47 size_t GetLength() const { return impl_->GetLength(); }
48 void CopyTo(char * dest, bool nullterminate) const { impl_->CopyTo(dest, nullterminate); }
54 impl_.reset(other.impl_->Copy());
58 void Clear() { impl_.reset(new EmptyCryptStringImpl()); }
59 std::string UrlEncode() const { return impl_->UrlEncode(); }
61 return impl_->CopyRawTo(dest);
65 scoped_ptr<const CryptStringImpl> impl_; member in class:rtc::CryptString
  /external/libchrome/base/synchronization/
condition_variable.h 103 ConditionVarImpl* impl_; member in class:base::ConditionVariable
  /external/opencv3/modules/viz/src/
widget.cpp 58 cv::viz::Widget::Widget() : impl_( new Impl() ) { }
60 cv::viz::Widget::Widget(const Widget& other) : impl_( new Impl() )
62 if (other.impl_ && other.impl_->prop)
63 impl_->prop = other.impl_->prop;
68 if (!impl_)
69 impl_ = new Impl();
71 if (other.impl_)
72 impl_->prop = other.impl_->prop
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 408 impl_ = new Impl;
409 impl_->main = main;
410 impl_->detached = detached;
411 atomic_store(&impl_->event, 0, memory_order_relaxed);
418 __interceptor_pthread_create(&impl_->thread, &attr,
419 ScopedThread::Impl::ScopedThreadCallback, impl_);
424 if (!impl_->main) {
426 impl_->send(&event);
427 if (!impl_->detached)
428 __interceptor_pthread_join(impl_->thread, 0)
    [all...]
  /external/v8/src/
handles.cc 164 : impl_(isolate->handle_scope_implementer()) {
165 impl_->BeginDeferredScope();
166 HandleScopeData* data = impl_->isolate()->handle_scope_data();
167 Object** new_next = impl_->GetSpareOrNewBlock();
169 DCHECK(data->limit == &impl_->blocks()->last()[kHandleBlockSize]);
170 impl_->blocks()->Add(new_next);
184 impl_->isolate()->handle_scope_data()->level--;
186 DCHECK(impl_->isolate()->handle_scope_data()->level == prev_level_);
191 DeferredHandles* deferred = impl_->Detach(prev_limit_);
192 HandleScopeData* data = impl_->isolate()->handle_scope_data()
    [all...]
  /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/ceres-solver/include/ceres/
covariance.h 377 internal::scoped_ptr<internal::CovarianceImpl> impl_; member in class:ceres::Covariance
  /external/parameter-framework/asio-1.10.6/include/asio/impl/
io_service.hpp 36 return ios.impl_;
81 impl_.dispatch(init.handler);
98 impl_.post(init.handler);
111 : io_service_impl_(io_service.impl_)
  /external/webp/src/utils/
thread.h 43 WebPWorkerImpl* impl_; member in struct:__anon26183
  /system/core/libmemunreachable/
ThreadCapture.h 51 Allocator<ThreadCaptureImpl>::unique_ptr impl_; member in class:ThreadCapture
  /external/v8/include/
v8-util.h 168 size_t Size() { return Traits::Size(&impl_); }
179 return Local<V>::New(isolate_, FromVal(Traits::Get(&impl_, key)));
186 return Traits::Get(&impl_, key) != kPersistentContainerNotFound;
195 return SetReturnValueFromVal(&returnValue, Traits::Get(&impl_, key));
205 reinterpret_cast<internal::Object**>(FromVal(Traits::Get(&impl_, key))));
215 reinterpret_cast<internal::Object**>(FromVal(Traits::Get(&impl_, key))),
223 return Release(Traits::Remove(&impl_, key)).Pass();
234 while (!Traits::Empty(&impl_)) {
236 Traits::Swap(impl_, impl);
297 return PersistentValueReference(Traits::Get(&impl_, key))
358 typename Traits::Impl impl_; member in class:v8::PersistentValueMapBase
649 typename Traits::Impl impl_; member in class:v8::PersistentValueVector
    [all...]
  /external/opencv3/modules/core/src/
cuda_stream.cpp 411 impl_ = makePtr<Impl>();
421 cudaError_t err = cudaStreamQuery(impl_->stream);
436 cudaSafeCall( cudaStreamSynchronize(impl_->stream) );
446 cudaSafeCall( cudaStreamWaitEvent(impl_->stream, EventAccessor::getEvent(event), 0) );
486 cudaSafeCall( cudaStreamAddCallback(impl_->stream, cudaStreamCallback, data, 0) );
508 return (impl_->stream != 0) ? &Stream::this_type_does_not_support_comparisons : 0;
516 return stream.impl_->stream;
663 cv::cuda::BufferPool::BufferPool(Stream& stream) : allocator_(stream.impl_->stackAllocator_.get())
714 return event.impl_->event;
725 impl_ = makePtr<Impl>(flags)
    [all...]
  /external/libbrillo/brillo/streams/
tls_stream.cc 448 : impl_{std::move(impl)} {}
451 if (impl_) {
452 impl_->Close(nullptr);
463 TlsStreamImpl* pimpl = stream->impl_.get();
475 return impl_ ? true : false;
494 if (!impl_)
496 return impl_->ReadNonBlocking(buffer, size_to_read, size_read, end_of_stream,
504 if (!impl_)
506 return impl_->WriteNonBlocking(buffer, size_to_write, size_written, error);
510 if (!impl_)
    [all...]
  /external/gmock/include/gmock/
gmock-actions.h 287 Action() : impl_(NULL) {}
291 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
294 Action(const Action& action) : impl_(action.impl_) {}
304 bool IsDoDefault() const { return impl_.get() == NULL; }
320 return impl_->Perform(args);
327 internal::linked_ptr<ActionInterface<F> > impl_; member in class:testing::Action
354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
358 return Action<F>(new MonomorphicImpl<F>(impl_));
368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {
375 Impl impl_; member in class:testing::PolymorphicAction::MonomorphicImpl
380 Impl impl_; member in class:testing::PolymorphicAction
421 const internal::linked_ptr<ActionInterface<F2> > impl_; member in class:testing::internal::ActionAdaptor
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 287 Action() : impl_(NULL) {}
291 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
294 Action(const Action& action) : impl_(action.impl_) {}
304 bool IsDoDefault() const { return impl_.get() == NULL; }
320 return impl_->Perform(args);
327 internal::linked_ptr<ActionInterface<F> > impl_; member in class:testing::Action
354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
358 return Action<F>(new MonomorphicImpl<F>(impl_));
368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {
375 Impl impl_; member in class:testing::PolymorphicAction::MonomorphicImpl
380 Impl impl_; member in class:testing::PolymorphicAction
421 const internal::linked_ptr<ActionInterface<F2> > impl_; member in class:testing::internal::ActionAdaptor
    [all...]
  /external/libchrome/base/files/
file_path_watcher.h 104 scoped_refptr<PlatformDelegate> impl_; member in class:base::FilePathWatcher
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.h 127 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::FileInputStream
204 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::FileOutputStream
248 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::IstreamInputStream
290 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::OstreamOutputStream
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 127 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::FileInputStream
204 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::FileOutputStream
248 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::IstreamInputStream
290 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::OstreamOutputStream
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 127 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::FileInputStream
204 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::FileOutputStream
248 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::IstreamInputStream
290 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::OstreamOutputStream
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 127 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::FileInputStream
204 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::FileOutputStream
248 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::IstreamInputStream
290 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::OstreamOutputStream
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream_impl.h 127 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::FileInputStream
204 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::FileOutputStream
248 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::IstreamInputStream
290 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::OstreamOutputStream
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream_impl.h 127 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::FileInputStream
204 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::FileOutputStream
248 CopyingInputStreamAdaptor impl_; member in class:google::protobuf::io::IstreamInputStream
290 CopyingOutputStreamAdaptor impl_; member in class:google::protobuf::io::OstreamOutputStream
  /external/opencv3/modules/cudacodec/src/
thread.cpp 152 impl_(new Impl(func, userData))
158 impl_->wait();

Completed in 2428 milliseconds

12 3 4 5