Lines Matching refs:opts
276 ReplaceFstOptions(const CacheOptions &opts, int64 r)
277 : CacheOptions(opts),
342 const ReplaceFstOptions<A, T> &opts)
343 : CacheImpl<A>(opts),
344 epsilon_on_replace_(opts.epsilon_on_replace),
345 state_table_(opts.state_table ? opts.state_table :
346 new StateTable(fst_tuples, opts.root)) {
376 fst_array_.push_back(opts.take_ownership ? fst : fst->Copy());
398 Label nonterminal = nonterminal_hash_[opts.root];
401 << opts.root << "' in the input tuple vector";
975 const ReplaceFstOptions<A, T> &opts)
976 : ImplToFst<Impl>(new Impl(fst_array, opts)) {}
1439 ReplaceFstOptions<Arc> opts(root, epsilon_on_replace);
1440 opts.gc_limit = 0; // Cache only the last state for fastest copy.
1441 *ofst = ReplaceFst<Arc>(ifst_array, opts);