OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImplToMutableFst
(Results
1 - 3
of
3
) sorted by null
/external/openfst/src/include/fst/
mutable-fst.h
250
class
ImplToMutableFst
: public ImplToExpandedFst<I, F> {
347
ImplToMutableFst
() : ImplToExpandedFst<I, F>() {}
349
ImplToMutableFst
(I *impl) : ImplToExpandedFst<I, F>(impl) {}
352
ImplToMutableFst
(const
ImplToMutableFst
<I, F> &fst)
355
ImplToMutableFst
(const
ImplToMutableFst
<I, F> &fst, bool safe)
366
ImplToMutableFst
<I, F> &operator=(const
ImplToMutableFst
<I, F> &fst);
368
ImplToMutableFst
<I, F> &operator=(const Fst<Arc> &fst)
[
all
...]
edit-fst.h
418
// and one for mutable fst's (ImplToFst and
ImplToMutableFst
, respectively).
419
// As it happens, the API for the
ImplToMutableFst
<I,F> class requires that
691
public
ImplToMutableFst
< EditFstImpl<A, WrappedFstT, MutableFstT> > {
699
EditFst() :
ImplToMutableFst
<Impl>(new Impl()) {}
702
ImplToMutableFst
<Impl>(new Impl(fst)) {}
705
ImplToMutableFst
<Impl>(new Impl(fst)) {}
709
ImplToMutableFst
<Impl>(fst, safe) {}
767
explicit EditFst(Impl *impl) :
ImplToMutableFst
<Impl>(impl) {}
vector-fst.h
409
// methods to
ImplToMutableFst
. Supports additional operations:
412
class VectorFst : public
ImplToMutableFst
< VectorFstImpl<A> > {
423
VectorFst() :
ImplToMutableFst
<Impl>(new Impl) {}
426
:
ImplToMutableFst
<Impl>(new Impl(fst)) {}
428
VectorFst(const VectorFst<A> &fst) :
ImplToMutableFst
<Impl>(fst) {}
492
explicit VectorFst(Impl *impl) :
ImplToMutableFst
<Impl>(impl) {}
501
void MutateCheck() { return
ImplToMutableFst
<Impl>::MutateCheck(); }
Completed in 356 milliseconds