OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MapFst
(Results
1 - 2
of
2
) sorted by null
/external/openfst/src/include/fst/
map.h
19
// Compatability file for old-style Map() functions and
MapFst
class
54
class
MapFst
: public ArcMapFst<A, B, C> {
61
MapFst
(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts)
64
MapFst
(const Fst<A> &fst, C* mapper, const MapFstOptions& opts)
67
MapFst
(const Fst<A> &fst, const C &mapper)
70
MapFst
(const Fst<A> &fst, C* mapper) : ArcMapFst<A, B, C>(fst, mapper) {}
73
MapFst
(const ArcMapFst<A, B, C> &fst, bool safe = false)
76
// Get a copy of this
MapFst
. See Fst<>::Copy() for further doc.
77
virtual
MapFst
<A, B, C> *Copy(bool safe = false) const {
78
return new
MapFst
(*this, safe)
[
all
...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
map.h
237
//
MapFst
default caching behaviour is to do no caching. Most
245
template <class A, class B, class C> class
MapFst
;
247
// Implementation of delayed
MapFst
.
263
friend class StateIterator<
MapFst
<A, B, C> >;
453
class
MapFst
: public Fst<B> {
455
friend class ArcIterator<
MapFst
<A, B, C> >;
456
friend class StateIterator<
MapFst
<A, B, C> >;
457
friend class CacheArcIterator<
MapFst
<A, B, C> >;
464
MapFst
(const Fst<A> &fst, const C &mapper,
468
MapFst
(const Fst<A> &fst, C* mapper
[
all
...]
Completed in 515 milliseconds