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

1 2

  /external/openfst/src/include/fst/
expanded-fst.h 123 // delegates to ImplToFst the handling of the Fst interface methods.
125 class ImplToExpandedFst : public ImplToFst<I, F> {
131 using ImplToFst<I, F>::GetImpl;
136 ImplToExpandedFst() : ImplToFst<I, F>() {}
138 ImplToExpandedFst(I *impl) : ImplToFst<I, F>(impl) {}
141 : ImplToFst<I, F>(fst) {}
144 : ImplToFst<I, F>(fst, safe) {}
complement.h 138 // reference counting, delegating most methods to ImplToFst.
140 class ComplementFst : public ImplToFst< ComplementFstImpl<A> > {
145 using ImplToFst< ComplementFstImpl<A> >::GetImpl;
153 : ImplToFst<Impl>(new Impl(fst)) {
164 : ImplToFst<Impl>(fst, safe) {}
182 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
relabel.h 380 // reference counting, delegating most methods to ImplToFst.
382 class RelabelFst : public ImplToFst< RelabelFstImpl<A> > {
397 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, RelabelFstOptions())) {}
403 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, opts)) {}
408 : ImplToFst<Impl>(new Impl(fst, fst.InputSymbols(), new_isymbols,
416 : ImplToFst<Impl>(new Impl(fst, fst.InputSymbols(), new_isymbols,
424 : ImplToFst<Impl>(new Impl(fst, old_isymbols, new_isymbols, old_osymbols,
433 : ImplToFst<Impl>(new Impl(fst, old_isymbols, new_isymbols, old_osymbols,
438 : ImplToFst<Impl>(fst, safe) {}
453 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl();
    [all...]
intersect.h 63 using ImplToFst< ComposeFstImplBase<A> >::GetImpl;
64 using ImplToFst< ComposeFstImplBase<A> >::SetImpl;
rational.h 265 // reference counting, delegating most methods to ImplToFst.
267 class RationalFst : public ImplToFst< RationalFstImpl<A> > {
290 : ImplToFst<Impl>(new Impl(RationalFstOptions())) {}
293 : ImplToFst<Impl>(new Impl(opts)) {}
297 : ImplToFst<Impl>(fst, safe) {}
301 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
synchronize.h 352 // reference counting, delegating most methods to ImplToFst.
354 class SynchronizeFst : public ImplToFst< SynchronizeFstImpl<A> > {
366 : ImplToFst<Impl>(new Impl(fst, SynchronizeFstOptions())) {}
369 : ImplToFst<Impl>(new Impl(fst, opts)) {}
373 : ImplToFst<Impl>(fst, safe) {}
388 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
fst.h 828 class ImplToFst : public F {
834 virtual ~ImplToFst() { if (!impl_->DecrRefCount()) delete impl_; }
871 ImplToFst() : impl_(0) {}
873 ImplToFst(I *impl) : impl_(impl) {}
875 ImplToFst(const ImplToFst<I, F> &fst) {
882 ImplToFst(const ImplToFst<I, F> &fst, bool safe) {
906 ImplToFst<I, F> &operator=(const ImplToFst<I, F> &fst)
    [all...]
state-map.h 327 class StateMapFst : public ImplToFst< StateMapFstImpl<A, B, C> > {
339 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
342 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
345 : ImplToFst<Impl>(new Impl(fst, mapper, StateMapFstOptions())) {}
348 : ImplToFst<Impl>(new Impl(fst, mapper, StateMapFstOptions())) {}
352 : ImplToFst<Impl>(fst, safe) {}
369 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
closure.h 106 using ImplToFst< RationalFstImpl<A> >::GetImpl;
invert.h 82 using ImplToFst<Impl>::GetImpl;
project.h 102 using ImplToFst<Impl>::GetImpl;
difference.h 62 using ImplToFst< ComposeFstImplBase<A> >::SetImpl;
63 using ImplToFst< ComposeFstImplBase<A> >::GetImpl;
factor-weight.h 398 // reference counting, delegating most methods to ImplToFst.
400 class FactorWeightFst : public ImplToFst< FactorWeightFstImpl<A, F> > {
412 : ImplToFst<Impl>(new Impl(fst, FactorWeightOptions<A>())) {}
415 : ImplToFst<Impl>(new Impl(fst, opts)) {}
419 : ImplToFst<Impl>(fst, copy) {}
434 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
rmepsilon.h 522 // reference counting, delegating most methods to ImplToFst.
524 class RmEpsilonFst : public ImplToFst< RmEpsilonFstImpl<A> > {
535 : ImplToFst<Impl>(new Impl(fst, RmEpsilonFstOptions())) {}
538 : ImplToFst<Impl>(new Impl(fst, opts)) {}
542 : ImplToFst<Impl>(fst, safe) {}
557 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
union.h 134 using ImplToFst< RationalFstImpl<A> >::GetImpl;
mutable-fst.h 256 using ImplToFst<I, F>::GetImpl;
257 using ImplToFst<I, F>::SetImpl;
compose.h 448 // reference counting, delegating most methods to ImplToFst.
450 class ComposeFst : public ImplToFst< ComposeFstImplBase<A> > {
461 using ImplToFst<Impl>::SetImpl;
466 : ImplToFst<Impl>(CreateBase(fst1, fst2, opts)) {}
474 : ImplToFst<Impl>(CreateBase1(fst1, fst2, opts)) {}
484 : ImplToFst<Impl>(CreateBase2(fst1, fst2, opts)) {}
562 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
arc-map.h 553 class ArcMapFst : public ImplToFst< ArcMapFstImpl<A, B, C> > {
565 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
568 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
571 : ImplToFst<Impl>(new Impl(fst, mapper, ArcMapFstOptions())) {}
574 : ImplToFst<Impl>(new Impl(fst, mapper, ArcMapFstOptions())) {}
578 : ImplToFst<Impl>(fst, safe) {}
593 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
    [all...]
replace.h 953 // reference counting, delegating most methods to ImplToFst.
955 class ReplaceFst : public ImplToFst< ReplaceFstImpl<A, T> > {
968 using ImplToFst<Impl>::Properties;
972 : ImplToFst<Impl>(new Impl(fst_array, ReplaceFstOptions<A, T>(root))) {}
976 : ImplToFst<Impl>(new Impl(fst_array, opts)) {}
980 : ImplToFst<Impl>(fst, safe) {}
    [all...]
matcher-fst.h 147 return ImplToFst<Impl, ExpandedFst<Arc> >::GetImpl();
178 ImplToFst< Impl, ExpandedFst<Arc> >::SetImpl(impl, own_impl);
concat.h 195 using ImplToFst< RationalFstImpl<A> >::GetImpl;
determinize.h 670 // reference counting, delegating most methods to ImplToFst.
672 class DeterminizeFst : public ImplToFst< DeterminizeFstImplBase<A> > {
685 using ImplToFst<Impl>::SetImpl;
741 : ImplToFst<Impl>(
745 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
randgen.h 509 class RandGenFst : public ImplToFst< RandGenFstImpl<A, B, S> > {
522 : ImplToFst<Impl>(new Impl(fst, opts)) {}
526 : ImplToFst<Impl>(fst, safe) {}
541 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
const-fst.h 317 Impl *GetImpl() const { return ImplToFst<Impl, ExpandedFst<A> >::GetImpl(); }
320 ImplToFst< Impl, ExpandedFst<A> >::SetImpl(impl, own_impl);
  /external/openfst/src/include/fst/extensions/pdt/
expand.h 223 // reference counting, delegating most methods to ImplToFst.
225 class ExpandFst : public ImplToFst< ExpandFstImpl<A> > {
241 : ImplToFst<Impl>(new Impl(fst, parens, ExpandFstOptions<A>())) {}
247 : ImplToFst<Impl>(new Impl(fst, parens, opts)) {}
251 : ImplToFst<Impl>(fst, safe) {}
274 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }
    [all...]

Completed in 1070 milliseconds

1 2