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

1234567

/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.cc45 impl_(NULL) {
52 if (impl_)
53 impl_->GetTransport()->DestroyChannel(impl_->component());
60 // Destroy any existing impl_.
61 if (impl_) {
62 impl_->GetTransport()->DestroyChannel(impl_->component());
66 impl_ = impl;
68 if (impl_) {
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannelproxy.cc37 : TransportChannel(name, content_type), impl_(NULL) {
41 if (impl_)
42 impl_->GetTransport()->DestroyChannel(impl_->name());
46 impl_ = impl;
47 impl_->SignalReadableState.connect(
49 impl_->SignalWritableState.connect(
51 impl_->SignalReadPacket.connect(this, &TransportChannelProxy::OnReadPacket);
52 impl_->SignalRouteChange.connect(this, &TransportChannelProxy::OnRouteChange);
56 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/net/http/
H A Dhttp_server_properties_impl_unittest.cc28 HttpServerPropertiesImpl impl_; member in class:net::__anon8802::HttpServerPropertiesImplTest
43 impl_.InitializeSpdyServers(NULL, true);
44 EXPECT_FALSE(impl_.SupportsSpdy(spdy_server_google));
48 impl_.InitializeSpdyServers(&spdy_servers, true);
49 EXPECT_FALSE(impl_.SupportsSpdy(spdy_server_google));
54 impl_.InitializeSpdyServers(&spdy_servers1, true);
55 EXPECT_TRUE(impl_.SupportsSpdy(spdy_server_google));
62 impl_.InitializeSpdyServers(&spdy_servers2, true);
63 EXPECT_TRUE(impl_.SupportsSpdy(spdy_server_google));
64 EXPECT_TRUE(impl_
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dproxy_config_service.h19 : impl_(impl) {}
24 impl_->AddObserver(observer);
27 impl_->RemoveObserver(observer);
30 return impl_->IOGetProxyConfig(config);
34 scoped_refptr<ProxyConfigServiceImpl> impl_; member in class:chromeos::ProxyConfigService
/external/chromium/net/base/
H A Dmapped_host_resolver.cc15 : impl_(impl) {
26 // Modify the request before forwarding it to |impl_|.
31 return impl_->Resolve(modified_info, addresses, callback, out_req, net_log);
35 impl_->CancelRequest(req);
39 impl_->AddObserver(observer);
43 impl_->RemoveObserver(observer);
47 return impl_->GetAsHostResolverImpl();
/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/testing/gmock/include/gmock/
H A Dgmock-cardinalities.h90 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); }
121 internal::linked_ptr<const CardinalityInterface> impl_; member in class:testing::Cardinality
/external/chromium/base/files/
H A Dfile_path_watcher.cc17 impl_->Cancel();
22 return impl_->Watch(path, delegate);
H A Dfile_path_watcher_stub.cc27 impl_ = new FilePathWatcherImpl();
/external/chromium/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/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/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/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dsymbol-table.h162 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
165 SymbolTable(const SymbolTable& table) : impl_(table.impl_) {
166 impl_->IncrRefCount();
172 if (!impl_->DecrRefCount()) delete impl_;
189 return impl_->AddSymbol(symbol, key);
198 return impl_->AddSymbol(symbol);
212 return impl_->AddTable(table.impl_);
314 SymbolTableImpl* impl_; member in class:fst::SymbolTable
366 const SymbolTableImpl* impl_; member in class:fst::SymbolTableIterator
[all...]
/external/chromium/base/metrics/
H A Dstats_table.cc259 : impl_(NULL),
269 impl_ = Private::New(name, table_size, max_threads, max_counters);
271 if (!impl_)
285 delete impl_;
304 if (!impl_)
311 SharedMemoryAutoLock lock(impl_->shared_memory());
321 strlcpy(impl_->thread_name(slot), thread_name.c_str(),
323 *(impl_->thread_tid(slot)) = PlatformThread::CurrentId();
324 *(impl_->thread_pid(slot)) = GetCurrentProcId();
337 if (!impl_)
[all...]
/external/chromium_org/base/metrics/
H A Dstats_table.cc255 : impl_(NULL),
265 impl_ = Private::New(name, table_size, max_threads, max_counters);
267 if (!impl_)
281 delete impl_;
305 if (!impl_)
312 SharedMemoryAutoLock lock(impl_->shared_memory());
322 strlcpy(impl_->thread_name(slot), thread_name.c_str(),
324 *(impl_->thread_tid(slot)) = PlatformThread::CurrentId();
325 *(impl_->thread_pid(slot)) = GetCurrentProcId();
337 if (!impl_)
[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/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...]
H A Dweight-class.h79 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_
143 WeightImplBase *impl_; member in class:fst::script::WeightClass
[all...]
/external/chromium_org/base/memory/
H A Dscoped_ptr.h322 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_
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/chrome/browser/chromeos/input_method/
H A Dcandidate_window.h31 Impl* impl_; member in class:chromeos::CandidateWindowController
/external/chromium_org/ui/base/ozone/
H A Dsurface_factory_ozone.cc12 SurfaceFactoryOzone* SurfaceFactoryOzone::impl_ = NULL; member in class:ui::SurfaceFactoryOzone
45 CHECK(impl_) << "SurfaceFactoryOzone accessed before constructed";
46 return impl_;
50 impl_ = impl;
/external/chromium_org/chrome/browser/ui/gtk/
H A Dconstrained_web_dialog_delegate_gtk.cc75 return impl_->GetWebDialogDelegate();
78 return impl_->GetWebDialogDelegate();
81 return impl_->OnDialogCloseFromWebUI();
84 return impl_->ReleaseWebContentsOnDialogClose();
87 return impl_->window();
90 return impl_->GetWebContents();
94 impl_->set_window(window);
98 return impl_->window();
104 scoped_ptr<ConstrainedWebDialogDelegateGtk> impl_; member in class:ConstrainedWebDialogDelegateViewGtk
113 : impl_(ne
[all...]

Completed in 480 milliseconds

1234567