Home | History | Annotate | Download | only in script

Lines Matching refs:opts

56   virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const = 0;
121 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const {
122 return impl_->Write(ostr, opts);
153 const FstReadOptions &opts) {
154 if (!opts.header) {
158 const FstHeader &hdr = *opts.header;
161 return ReadTypedFst<MutableFstClass, MutableFst<Arc> >(stream, opts);
163 return ReadTypedFst<FstClass, Fst<Arc> >(stream, opts);
210 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const {
211 return impl_->Write(ostr, opts);
253 const FstReadOptions &opts) {
254 UnderlyingT *u = UnderlyingT::Read(stream, opts);
294 const FstReadOptions &opts) {
295 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(stream, opts);
309 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const {
310 return GetImpl()->Write(ostr, opts);
354 const FstReadOptions &opts) {
355 VectorFst<Arc> *vfst = VectorFst<Arc>::Read(stream, opts);