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

1 2 34 5

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_thread.h 170 VP9WorkerImpl *impl_; member in struct:__anon17763
  /external/chromium_org/third_party/webrtc/base/
scoped_ptr.h 320 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_.reset(p);
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/
relabel.h 469 : impl_(fst.GetImpl()), siter_(*impl_->fst_), s_(0) {}
493 const RelabelFstImpl<A> *impl_; member in class:fst::StateIterator
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/openfst/src/include/fst/script/
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/srec/tools/thirdparty/OpenFst/fst/lib/
arcsort.h 197 : impl_(new ArcSortFstImpl<A, C>(fst, comp, ArcSortFstOptions())) {}
200 : impl_(new ArcSortFstImpl<A, C>(fst, comp, opts)) {}
203 impl_(new ArcSortFstImpl<A, C>(*(fst.impl_))) {}
205 virtual ~ArcSortFst() { if (!impl_->DecrRefCount()) delete impl_; }
207 virtual StateId Start() const { return impl_->Start(); }
209 virtual Weight Final(StateId s) const { return impl_->Final(s); }
211 virtual size_t NumArcs(StateId s) const { return impl_->NumArcs(s); }
214 return impl_->NumInputEpsilons(s)
254 ArcSortFstImpl<A, C> *impl_; member in class:fst::ArcSortFst
    [all...]
complement.h 119 : impl_(new ComplementFstImpl<A>(fst)) {
126 ComplementFst(const ComplementFst<A> &fst) : impl_(fst.impl_) {
127 impl_->IncrRefCount();
130 virtual ~ComplementFst() { if (!impl_->DecrRefCount()) { delete impl_; }}
132 virtual StateId Start() const { return impl_->Start(); }
134 virtual Weight Final(StateId s) const { return impl_->Final(s); }
139 impl_->SetProperties(test, known);
142 return impl_->Properties(mask)
176 ComplementFstImpl<A> *impl_; member in class:fst::ComplementFst
    [all...]
const-fst.h 233 ConstFst() : impl_(new ConstFstImpl<A>()) {}
235 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) {
236 impl_->IncrRefCount();
239 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {}
241 virtual ~ConstFst() { if (!impl_->DecrRefCount()) delete impl_; }
243 virtual StateId Start() const { return impl_->Start(); }
245 virtual Weight Final(StateId s) const { return impl_->Final(s); }
247 StateId NumStates() const { return impl_->NumStates();
331 ConstFstImpl<A> *impl_; \/\/ FST's impl member in class:fst::ConstFst
    [all...]
rational.h 201 virtual StateId Start() const { return impl_->Start(); }
202 virtual Weight Final(StateId s) const { return impl_->Final(s); }
203 virtual size_t NumArcs(StateId s) const { return impl_->NumArcs(s); }
205 return impl_->NumInputEpsilons(s);
208 return impl_->NumOutputEpsilons(s);
213 impl_->SetProperties(test, known);
216 return impl_->Properties(mask);
219 virtual const string& Type() const { return impl_->Type(); }
221 return impl_->InputSymbols();
224 return impl_->OutputSymbols()
248 RationalFstImpl<A> *impl_; member in class:fst::RationalFst
    [all...]
relabel.h 331 impl_(new RelabelFstImpl<A>(fst, ipairs, opairs, RelabelFstOptions())) {}
337 : impl_(new RelabelFstImpl<A>(fst, ipairs, opairs, opts)) {}
342 impl_(new RelabelFstImpl<A>(fst, new_isymbols, new_osymbols,
349 : impl_(new RelabelFstImpl<A>(fst, new_isymbols, new_osymbols, opts)) {}
351 RelabelFst(const RelabelFst<A> &fst) : impl_(fst.impl_) {
352 impl_->IncrRefCount();
355 virtual ~RelabelFst() { if (!impl_->DecrRefCount()) delete impl_; }
357 virtual StateId Start() const { return impl_->Start();
402 RelabelFstImpl<A> *impl_; member in class:fst::RelabelFst
433 const RelabelFstImpl<A> *impl_; member in class:fst::StateIterator
    [all...]
symbol-table.h 161 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...]
factor-weight.h 348 : impl_(new FactorWeightFstImpl<A, F>(fst, FactorWeightOptions())) {}
351 : impl_(new FactorWeightFstImpl<A, F>(fst, opts)) {}
352 FactorWeightFst(const FactorWeightFst<A, F> &fst) : Fst<A>(fst), impl_(fst.impl_) {
353 impl_->IncrRefCount();
356 virtual ~FactorWeightFst() { if (!impl_->DecrRefCount()) delete impl_; }
358 virtual StateId Start() const { return impl_->Start(); }
360 virtual Weight Final(StateId s) const { return impl_->Final(s); }
362 virtual size_t NumArcs(StateId s) const { return impl_->NumArcs(s);
405 FactorWeightFstImpl<A, F> *impl_; member in class:fst::FactorWeightFst
    [all...]
rmepsilon.h 436 : impl_(new RmEpsilonFstImpl<A>(fst, RmEpsilonFstOptions())) {}
439 : impl_(new RmEpsilonFstImpl<A>(fst, opts)) {}
441 explicit RmEpsilonFst(const RmEpsilonFst<A> &fst) : impl_(fst.impl_) {
442 impl_->IncrRefCount();
445 virtual ~RmEpsilonFst() { if (!impl_->DecrRefCount()) delete impl_; }
447 virtual StateId Start() const { return impl_->Start(); }
449 virtual Weight Final(StateId s) const { return impl_->Final(s); }
451 virtual size_t NumArcs(StateId s) const { return impl_->NumArcs(s);
495 RmEpsilonFstImpl<A> *impl_; member in class:fst::RmEpsilonFst
    [all...]
synchronize.h 332 : impl_(new SynchronizeFstImpl<A>(fst, SynchronizeFstOptions())) {}
335 : impl_(new SynchronizeFstImpl<A>(fst, opts)) {}
337 SynchronizeFst(const SynchronizeFst<A> &fst) : impl_(fst.impl_) {
338 impl_->IncrRefCount();
341 virtual ~SynchronizeFst() { if (!impl_->DecrRefCount()) delete impl_; }
343 virtual StateId Start() const { return impl_->Start(); }
345 virtual Weight Final(StateId s) const { return impl_->Final(s); }
347 virtual size_t NumArcs(StateId s) const { return impl_->NumArcs(s);
390 SynchronizeFstImpl<A> *impl_; member in class:fst::SynchronizeFst
    [all...]
determinize.h 550 impl_ = new DeterminizeFsaImpl<A, D>(fst, D(), opts);
553 impl_ = new DeterminizeFstImpl<A, STRING_LEFT_RESTRICT>(fst, opts);
557 DeterminizeFst(const DeterminizeFst<A> &fst) : Fst<A>(fst), impl_(fst.impl_) {
558 impl_->IncrRefCount();
561 virtual ~DeterminizeFst() { if (!impl_->DecrRefCount()) delete impl_; }
563 virtual StateId Start() const { return impl_->Start(); }
565 virtual Weight Final(StateId s) const { return impl_->Final(s); }
567 virtual size_t NumArcs(StateId s) const { return impl_->NumArcs(s);
618 DeterminizeFstImplBase<A> *impl_; member in class:fst::DeterminizeFst
    [all...]
  /external/chromium_org/content/child/
blink_platform_impl.cc 79 WebWaitableEventImpl() : impl_(new base::WaitableEvent(false, false)) {}
82 virtual void wait() { impl_->Wait(); }
83 virtual void signal() { impl_->Signal(); }
86 return impl_.get();
90 scoped_ptr<base::WaitableEvent> impl_; member in class:content::__anon12101::WebWaitableEventImpl
    [all...]
  /external/chromium_org/v8/include/
v8-util.h 130 size_t Size() { return Traits::Size(&impl_); }
141 return Local<V>::New(isolate_, FromVal(Traits::Get(&impl_, key)));
148 return Traits::Get(&impl_, key) != kPersistentContainerNotFound;
157 return SetReturnValueFromVal(&returnValue, Traits::Get(&impl_, key));
167 reinterpret_cast<internal::Object**>(FromVal(Traits::Get(&impl_, key))));
191 return Release(Traits::Remove(&impl_, key)).Pass();
202 while (!Traits::Empty(&impl_)) {
204 Traits::Swap(impl_, impl);
263 return PersistentValueReference(Traits::Get(&impl_, key));
291 Traits::Set(&impl_, key, ClearAndLeak(persistent))
349 typename Traits::Impl impl_; member in class:v8::PersistentValueMap
482 typename Traits::Impl impl_; member in class:v8::PersistentValueVector
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.h 404 ChannelMapEntry() : impl_(NULL), candidates_allocated_(false), ref_(0) {}
406 : impl_(impl),
418 TransportChannelImpl* get() const { return impl_; }
419 TransportChannelImpl* operator->() const { return impl_; }
426 TransportChannelImpl *impl_; member in struct:cricket::Transport::ChannelMapEntry
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_rtcp_impl_unittest.cc 105 impl_.reset(new ModuleRtpRtcpImpl(config));
106 EXPECT_EQ(0, impl_->SetRTCPStatus(kRtcpCompound));
116 scoped_ptr<ModuleRtpRtcpImpl> impl_; member in class:webrtc::__anon20643::RtpRtcpModule
119 impl_->GetRtcpPacketTypeCounters(&packets_sent_, &packets_received_);
123 impl_->GetRtcpPacketTypeCounters(&packets_sent_, &packets_received_);
142 EXPECT_EQ(0, sender_.impl_->SetSendingStatus(true));
143 EXPECT_EQ(0, sender_.impl_->SetSendingMediaStatus(true));
144 sender_.impl_->SetSSRC(kSenderSsrc);
145 sender_.impl_->SetRemoteSSRC(kReceiverSsrc);
146 sender_.impl_->SetSequenceNumber(kSequenceNumber)
    [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 105 // ParamIterator assumes ownership of the impl_ pointer.
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
109 impl_.reset(other.impl_->Clone());
113 const T& operator*() const { return *impl_->Current(); }
114 const T* operator->() const { return impl_->Current(); }
117 impl_->Advance();
122 ParamIteratorInterface<T>* clone = impl_->Clone();
123 impl_->Advance()
136 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
175 linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 124 // ParamIterator assumes ownership of the impl_ pointer.
125 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
128 impl_.reset(other.impl_->Clone());
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
136 impl_->Advance();
141 ParamIteratorInterface<T>* clone = impl_->Clone();
142 impl_->Advance()
155 scoped_ptr<ParamIteratorInterface<T> > impl_; member in class:testing::internal::ParamIterator
194 ::testing::internal::linked_ptr<const ParamGeneratorInterface<T> > impl_; member in class:testing::internal::ParamGenerator
    [all...]

Completed in 671 milliseconds

1 2 34 5