OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MutableFst
(Results
1 - 2
of
2
) sorted by null
/external/srec/tools/thirdparty/OpenFst/fst/lib/
mutable-fst.h
33
class
MutableFst
: public ExpandedFst<A> {
39
virtual
MutableFst
<A> &operator=(const Fst<A> &fst) = 0;
68
// Get a copy of this
MutableFst
.
69
virtual
MutableFst
<A> *Copy() const = 0;
70
// Read an
MutableFst
from an input stream; return NULL on error.
71
static
MutableFst
<A> *Read(istream &strm, const FstReadOptions &opts) {
82
LOG(ERROR) << "
MutableFst
::Read: Not an
MutableFst
: " << ropts.source;
89
LOG(ERROR) << "
MutableFst
::Read: Unknown FST type \"" << hdr.FstType()
96
return down_cast<
MutableFst
<A> *>(fst)
[
all
...]
/external/openfst/src/include/fst/
mutable-fst.h
41
class
MutableFst
: public ExpandedFst<A> {
47
virtual
MutableFst
<A> &operator=(const Fst<A> &fst) = 0;
49
MutableFst
<A> &operator=(const
MutableFst
<A> &fst) {
84
// Get a copy of this
MutableFst
. See Fst<>::Copy() for further doc.
85
virtual
MutableFst
<A> *Copy(bool safe = false) const = 0;
87
// Read an
MutableFst
from an input stream; return NULL on error.
88
static
MutableFst
<A> *Read(istream &strm, const FstReadOptions &opts) {
99
LOG(ERROR) << "
MutableFst
::Read: Not an
MutableFst
: " << ropts.source
[
all
...]
Completed in 1460 milliseconds