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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.cc 33 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_->SetIceProtocolType(protocol)
    [all...]
transportchannelproxy.cc 45 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/
transportchannelproxy.cc 37 : 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_->SetOption(it->first, it->second)
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
logger.cc 24 Logger* Logger::impl_ = NULL; member in class:i18n::phonenumbers::Logger
  /external/chromium/chrome/browser/chromeos/
proxy_config_service.h 19 : 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_org/net/http/
http_server_properties_impl_unittest.cc 28 HttpServerPropertiesImpl impl_; member in class:net::__anon11208::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_.SupportsSpdy(spdy_server_docs))
    [all...]
  /external/chromium/sdch/open-vcdiff/src/google/
output_string.h 68 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/
output_string.h 68 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/
output_string.h 68 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/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...]
fst-class.h 83 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_->Properties(mask, test)
140 Fst<Arc> *impl_; member in class:fst::script::FstClassImpl
271 FstClassImplBase *impl_; member in class:fst::script::FstClass
    [all...]
  /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/net/base/
mapped_host_resolver.cc 15 : 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/
covariance.cc 42 impl_.reset(new internal::CovarianceImpl(options));
51 return impl_->Compute(covariance_blocks, problem->problem_impl_.get());
57 return impl_->GetCovarianceBlock(parameter_block1,
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.h 31 Impl* impl_; member in class:chromeos::CandidateWindowController
  /external/chromium/testing/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); }
121 internal::linked_ptr<const CardinalityInterface> impl_; member in class:testing::Cardinality
  /external/chromium/base/files/
file_path_watcher.cc 17 impl_->Cancel();
22 return impl_->Watch(path, delegate);
file_path_watcher_stub.cc 27 impl_ = new FilePathWatcherImpl();
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 162 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/
stats_table.cc 259 : 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/
stats_table.cc 255 : 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/content/public/test/
test_browser_thread.cc 48 : 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/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/openfst/src/include/fst/
symbol-table.h 222 SymbolTable() : impl_(new SymbolTableImpl("<unspecified>")) {}
225 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
228 SymbolTable(const SymbolTable& table) : impl_(table.impl_) {
229 impl_->IncrRefCount();
235 if (!impl_->DecrRefCount()) delete impl_;
240 if (impl_ != st.impl_) {
241 st.impl_->IncrRefCount()
424 SymbolTableImpl* impl_; member in class:fst::SymbolTable
    [all...]
  /external/chromium_org/ui/base/ozone/
surface_factory_ozone.cc 12 SurfaceFactoryOzone* SurfaceFactoryOzone::impl_ = NULL; member in class:ui::SurfaceFactoryOzone
45 CHECK(impl_) << "SurfaceFactoryOzone accessed before constructed";
46 return impl_;
50 impl_ = impl;

Completed in 3506 milliseconds

1 2 3 4 5 6 7