Searched refs:impl_ (Results 1 - 25 of 177) sorted by relevance

12345678

/external/chromium_org/base/files/
H A Dfile_path_watcher_mac.cc22 DCHECK(!impl_.get());
27 impl_ = new FilePathWatcherFSEvents();
30 impl_ = new FilePathWatcherKQueue();
32 DCHECK(impl_.get());
33 return impl_->Watch(path, recursive, callback);
37 if (impl_.get())
38 impl_->Cancel();
43 if (impl_.get())
44 impl_->Cancel();
51 scoped_refptr<PlatformDelegate> impl_; member in class:base::__anon2253::FilePathWatcherImpl
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dportproxy.cc33 impl_ = port;
34 impl_->SignalUnknownAddress.connect(
36 impl_->SignalDestroyed.connect(this, &PortProxy::OnPortDestroyed);
37 impl_->SignalRoleConflict.connect(this, &PortProxy::OnRoleConflict);
41 ASSERT(impl_ != NULL);
42 return impl_->Type();
46 ASSERT(impl_ != NULL);
47 return impl_->Network();
51 ASSERT(impl_ != NULL);
52 impl_
[all...]
H A Dtransportchannelproxy.cc46 impl_(NULL) {
53 if (impl_)
54 impl_->GetTransport()->DestroyChannel(impl_->component());
60 if (impl == impl_) {
67 // Destroy any existing impl_.
68 if (impl_) {
69 impl_->GetTransport()->DestroyChannel(impl_->component());
73 impl_
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dlogger.cc24 Logger* Logger::impl_ = NULL; member in class:i18n::phonenumbers::Logger
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_factory_ozone.cc12 DesktopFactoryOzone* DesktopFactoryOzone::impl_ = NULL; member in class:views::DesktopFactoryOzone
21 CHECK(impl_) << "DesktopFactoryOzone accessed before constructed";
22 return impl_;
26 impl_ = impl;
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_runner_impl_adapter.cc15 impl_(new MenuRunnerImpl(menu_model_adapter_->CreateMenu())) {
19 return impl_->IsRunning();
23 impl_->Release();
33 return impl_->RunMenuAt(parent, button, bounds, anchor, types);
37 impl_->Cancel();
41 return impl_->GetClosingEventTime();
H A Dmenu_runner.cc14 impl_(internal::MenuRunnerImplInterface::Create(menu_model, run_types)) {
18 : run_types_(run_types), impl_(new internal::MenuRunnerImpl(menu_view)) {
22 impl_->Release();
59 return impl_->RunMenuAt(parent, button, bounds, anchor, run_types_);
63 return impl_->IsRunning();
67 impl_->Cancel();
71 return impl_->GetClosingEventTime();
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_thread.c37 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_
[all...]
/external/chromium_org/ui/gfx/
H A Dfont_list.cc26 FontList::FontList() : impl_(GetDefaultImpl()) {}
28 FontList::FontList(const FontList& other) : impl_(other.impl_) {}
31 : impl_(new FontListImpl(font_description_string)) {}
36 : impl_(new FontListImpl(font_names, font_style, font_size)) {}
39 : impl_(new FontListImpl(fonts)) {}
41 FontList::FontList(const Font& font) : impl_(new FontListImpl(font)) {}
46 impl_ = other.impl_;
62 return FontList(impl_
[all...]
/external/chromium_org/ui/ozone/public/
H A Dcursor_factory_ozone.cc12 CursorFactoryOzone* CursorFactoryOzone::impl_ = NULL; member in class:ui::CursorFactoryOzone
15 DCHECK(!impl_) << "There should only be a single CursorFactoryOzone.";
16 impl_ = this;
20 DCHECK_EQ(impl_, this);
21 impl_ = NULL;
25 DCHECK(impl_) << "No CursorFactoryOzone implementation set.";
26 return impl_;
H A Dsurface_factory_ozone.cc17 SurfaceFactoryOzone* SurfaceFactoryOzone::impl_ = NULL; member in class:ui::SurfaceFactoryOzone
20 DCHECK(!impl_) << "There should only be a single SurfaceFactoryOzone.";
21 impl_ = this;
25 DCHECK_EQ(impl_, this);
26 impl_ = NULL;
30 DCHECK(impl_) << "No SurfaceFactoryOzone implementation set.";
31 return impl_;
/external/chromium_org/net/http/
H A Dhttp_server_properties_impl_unittest.cc30 HttpServerPropertiesImpl impl_; member in class:net::__anon9315::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_
[all...]
/external/ceres-solver/internal/ceres/
H A Dcovariance.cc42 impl_.reset(new internal::CovarianceImpl(options));
51 return impl_->Compute(covariance_blocks, problem->problem_impl_.get());
57 return impl_->GetCovarianceBlock(parameter_block1,
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_manager.cc66 impl_ = (*factory_function_)();
67 DCHECK(impl_.get());
71 DCHECK(impl_.get());
75 return impl_->GetData(data);
79 impl_->AddCallback(callback);
83 return impl_->RemoveCallback(callback);
87 return impl_->has_callbacks();
91 impl_->StartDataProvider();
95 impl_->StopDataProvider();
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dscoped_ptr.h313 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_
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/sdch/open-vcdiff/src/google/
H A Doutput_string.h68 explicit OutputString(StringClass* impl) : impl_(impl) { }
73 impl_->append(s, n);
78 impl_->clear();
82 impl_->push_back(c);
86 impl_->reserve(impl_->size() + res_arg);
90 return impl_->size();
94 StringClass* impl_; member in class:open_vcdiff::OutputString
/external/chromium_org/third_party/libwebp/utils/
H A Dthread.c162 pthread_mutex_lock(&worker->impl_->mutex_);
164 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
173 pthread_cond_signal(&worker->impl_->condition_);
174 pthread_mutex_unlock(&worker->impl_->mutex_);
185 if (worker->impl_ == NULL) return;
187 pthread_mutex_lock(&worker->impl_->mutex_);
191 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
196 pthread_cond_signal(&worker->impl_
[all...]
/external/webp/src/utils/
H A Dthread.c162 pthread_mutex_lock(&worker->impl_->mutex_);
164 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
173 pthread_cond_signal(&worker->impl_->condition_);
174 pthread_mutex_unlock(&worker->impl_->mutex_);
185 if (worker->impl_ == NULL) return;
187 pthread_mutex_lock(&worker->impl_->mutex_);
191 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
196 pthread_cond_signal(&worker->impl_
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dsymbol-table.h161 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
164 SymbolTable(const SymbolTable& table) : impl_(table.impl_) {
165 impl_->IncrRefCount();
171 if (!impl_->DecrRefCount()) delete impl_;
188 return impl_->AddSymbol(symbol, key);
197 return impl_->AddSymbol(symbol);
211 return impl_->AddTable(table.impl_);
313 SymbolTableImpl* impl_; member in class:fst::SymbolTable
365 const SymbolTableImpl* impl_; member in class:fst::SymbolTableIterator
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dscoped_ptr.h217 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_
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/libphonenumber/src/phonenumbers/base/memory/
H A Dscoped_ptr.h222 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_
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/content/public/test/
H A Dtest_browser_thread.cc48 : impl_(new TestBrowserThreadImpl(identifier)) {
53 : impl_(new TestBrowserThreadImpl(identifier, message_loop)) {}
60 return impl_->Start();
66 return impl_->StartWithOptions(options);
70 impl_->Stop();
74 return impl_->IsRunning();
78 return impl_.get();
/external/chromium_org/net/dns/
H A Dmapped_host_resolver.cc15 : impl_(impl.Pass()) {
32 return impl_->Resolve(info, priority, addresses, callback, out_req, net_log);
43 return impl_->ResolveFromCache(info, addresses, net_log);
47 impl_->CancelRequest(req);
51 impl_->SetDnsClientEnabled(enabled);
55 return impl_->GetHostCache();
59 return impl_->GetDnsConfigAsValue();
/external/chromium_org/third_party/webrtc/base/
H A Dscoped_ptr.h320 scoped_ptr() : impl_(NULL) { }
323 explicit scoped_ptr(element_type* p) : impl_(p) { }
326 scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
339 scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
344 scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
359 impl_.TakeState(&rhs.impl_);
365 void reset(element_type* p = NULL) { impl_
442 rtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:rtc::scoped_ptr
554 rtc::internal::scoped_ptr_impl<element_type, deleter_type> impl_; member in class:rtc::scoped_ptr
[all...]
/external/openfst/src/include/fst/script/
H A Dfst-class.h83 impl_(should_own ? impl : impl->Copy()) { }
85 explicit FstClassImpl(const Fst<Arc> &impl) : impl_(impl.Copy()) { }
92 return impl_->Type();
100 return impl_->InputSymbols();
104 return impl_->OutputSymbols();
109 static_cast<MutableFst<Arc> *>(impl_)->SetInputSymbols(is);
114 static_cast<MutableFst<Arc> *>(impl_)->SetOutputSymbols(os);
118 return impl_->Write(fname);
122 return impl_->Write(ostr, opts);
126 return impl_
140 Fst<Arc> *impl_; member in class:fst::script::FstClassImpl
271 FstClassImplBase *impl_; member in class:fst::script::FstClass
[all...]

Completed in 842 milliseconds

12345678