HomeSort by relevance Sort by last modified time
    Searched defs:impl_ (Results 51 - 75 of 122) sorted by null

1 23 4 5

  /external/chromium_org/third_party/libwebp/utils/
thread.h 43 WebPWorkerImpl* impl_; member in struct:__anon17931
  /external/chromium_org/ui/views/controls/menu/
menu_runner.h 137 internal::MenuRunnerImplInterface* impl_; member in class:views::MenuRunner
  /external/chromium_org/v8/src/compiler/
common-operator.h 109 const CommonOperatorBuilderImpl& impl_; member in class:v8::internal::compiler::FINAL
machine-operator.h 179 const MachineOperatorBuilderImpl& impl_; member in class:v8::internal::compiler::FINAL
simplified-operator.h 142 const SimplifiedOperatorBuilderImpl& impl_; member in class:v8::internal::compiler::FINAL
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util.h 110 Impl *impl_; member in class:ScopedThread
  /external/webp/src/utils/
thread.h 43 WebPWorkerImpl* impl_; member in struct:__anon17069
  /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;
  /system/core/include/backtrace/
Backtrace.h 128 BacktraceImpl* impl_; member in class:Backtrace
  /external/chromium_org/cc/trees/
occlusion_tracker_perftest.cc 35 impl_(&proxy_) {}
67 DebugScopedSetImplThread impl_; member in class:cc::__anon7459::OcclusionTrackerPerfTest
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
scoped_ptr.h 217 scoped_ptr() : impl_(NULL) { }
220 explicit scoped_ptr(element_type* p) : impl_(p) { }
223 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
236 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
253 impl_.TakeState(&rhs.impl_);
259 void reset(element_type* p = NULL) { impl_.reset(p); }
264 assert(impl_.get() != NULL);
265 return *impl_.get()
308 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::addressinput::scoped_ptr
394 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::addressinput::scoped_ptr
    [all...]
  /external/chromium_org/third_party/libjingle/source/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/chromium_org/third_party/libphonenumber/src/phonenumbers/base/memory/
scoped_ptr.h 222 scoped_ptr() : impl_(NULL) { }
225 explicit scoped_ptr(element_type* p) : impl_(p) { }
228 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
241 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
258 impl_.TakeState(&rhs.impl_);
264 void reset(element_type* p = NULL) { impl_.reset(p); }
269 assert(impl_.get() != NULL);
270 return *impl_.get()
313 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::phonenumbers::scoped_ptr
399 scoped_ptr_impl<element_type, deleter_type> impl_; member in class:i18n::phonenumbers::scoped_ptr
    [all...]
  /external/chromium_org/third_party/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
  /external/chromium_org/third_party/webrtc/base/
cryptstring.h 52 CryptString() : impl_(new EmptyCryptStringImpl()) {}
53 size_t GetLength() const { return impl_->GetLength(); }
54 void CopyTo(char * dest, bool nullterminate) const { impl_->CopyTo(dest, nullterminate); }
55 CryptString(const CryptString & other) : impl_(other.impl_->Copy()) {}
56 explicit CryptString(const CryptStringImpl & impl) : impl_(impl.Copy()) {}
59 impl_.reset(other.impl_->Copy());
63 void Clear() { impl_.reset(new EmptyCryptStringImpl()); }
64 std::string UrlEncode() const { return impl_->UrlEncode();
70 scoped_ptr<const CryptStringImpl> impl_; member in class:rtc::CryptString
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
scoped_ptr.h 313 scoped_ptr() : impl_(NULL) { }
316 explicit scoped_ptr(element_type* p) : impl_(p) { }
319 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
332 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
337 scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
352 impl_.TakeState(&rhs.impl_);
358 void reset(element_type* p = NULL) { impl_.reset(p);
424 webrtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:webrtc::scoped_ptr
525 webrtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:webrtc::scoped_ptr
    [all...]
  /external/chromium_org/v8/src/
handles.h 256 HandleScopeImplementer* impl_; member in class:v8::internal::DeferredHandleScope
  /external/openfst/src/include/fst/script/
weight-class.h 79 WeightClass() : element_type_(ZERO), impl_(0) { }
83 : element_type_(OTHER), impl_(new WeightClassImpl<W>(weight)) { }
89 impl_(other.impl_ ? other.impl_->Copy() : 0) { }
92 if (impl_) delete impl_;
93 impl_ = other.impl_ ? other.impl_->Copy() : 0
143 WeightImplBase *impl_; member in class:fst::script::WeightClass
    [all...]
  /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
  /external/chromium_org/base/memory/
scoped_ptr.h 322 scoped_ptr() : impl_(NULL) { }
325 explicit scoped_ptr(element_type* p) : impl_(p) { }
328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
341 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
346 scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
361 impl_.TakeState(&rhs.impl_);
367 void reset(element_type* p = NULL) { impl_.reset(p);
433 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
534 base::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:scoped_ptr
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_data_manager_impl_private_unittest.cc 84 ScopedGpuDataManagerImpl() : impl_(new GpuDataManagerImpl()) {
85 EXPECT_TRUE(impl_);
86 EXPECT_TRUE(impl_->private_.get());
88 ~ScopedGpuDataManagerImpl() { delete impl_; }
90 GpuDataManagerImpl* get() const { return impl_; }
92 GpuDataManagerImpl* operator->() const { return impl_; }
95 GpuDataManagerImpl* impl_; member in class:content::GpuDataManagerImplPrivateTest::ScopedGpuDataManagerImpl
103 ScopedGpuDataManagerImplPrivate() : impl_(new GpuDataManagerImpl()) {
104 EXPECT_TRUE(impl_);
105 EXPECT_TRUE(impl_->private_.get())
118 GpuDataManagerImpl* impl_; member in class:content::GpuDataManagerImplPrivateTest::ScopedGpuDataManagerImplPrivate
    [all...]
  /external/chromium_org/mojo/services/html_viewer/
blink_platform_impl.cc 35 WebWaitableEventImpl() : impl_(new base::WaitableEvent(false, false)) {}
38 virtual void wait() { impl_->Wait(); }
39 virtual void signal() { impl_->Signal(); }
42 return impl_.get();
46 scoped_ptr<base::WaitableEvent> impl_; member in class:mojo::__anon13431::WebWaitableEventImpl
  /external/chromium_org/net/http/
http_server_properties_impl_unittest.cc 30 HttpServerPropertiesImpl impl_; member in class:net::__anon13940::HttpServerPropertiesImplTest
45 impl_.InitializeSpdyServers(NULL, true);
46 EXPECT_FALSE(impl_.SupportsSpdy(spdy_server_google));
50 impl_.InitializeSpdyServers(&spdy_servers, true);
51 EXPECT_FALSE(impl_.SupportsSpdy(spdy_server_google));
56 impl_.InitializeSpdyServers(&spdy_servers1, true);
57 EXPECT_TRUE(impl_.SupportsSpdy(spdy_server_google));
64 impl_.InitializeSpdyServers(&spdy_servers2, true);
68 impl_.GetSpdyServerList(&spdy_server_list, kMaxSupportsSpdyServerHosts);
76 EXPECT_TRUE(impl_.SupportsSpdy(spdy_server_google))
    [all...]
  /external/chromium_org/net/proxy/
multi_threaded_proxy_resolver_unittest.cc 161 impl_(impl) {}
168 return impl_->GetProxyForURL(
173 impl_->CancelRequest(request);
182 impl_->CancelSetPacScript();
188 return impl_->SetPacScript(script_data, callback);
192 ProxyResolver* impl_; member in class:net::__anon13980::ForwardingProxyResolver

Completed in 956 milliseconds

1 23 4 5