Home | History | Annotate | Download | only in fst

Lines Matching refs:nopts

201     FstReadOptions nopts(opts);
203 if (!nopts.header) {
204 hdr.Read(strm, nopts.source);
205 nopts.header = &hdr;
207 AddOnImpl<F, T> *impl = new AddOnImpl<F, T>(nopts.header->FstType());
208 if (!impl->ReadHeader(strm, nopts, kMinFileVersion, &hdr))
215 LOG(ERROR) << "AddOnImpl::Read: Bad add-on header: " << nopts.source;
233 impl = new AddOnImpl<F, T>(*fst, nopts.header->FstType(), t);
242 FstWriteOptions nopts(opts);
243 nopts.write_isymbols = false; // Let contained FST hold any symbols.
244 nopts.write_osymbols = false;
245 WriteHeader(strm, nopts, kFileVersion, &hdr);