Lines Matching refs:opts
40 ReplaceFstOptions(const CacheOptions &opts, int64 r)
41 : CacheOptions(opts), root(r), epsilon_on_replace(false) {}
99 const ReplaceFstOptions &opts)
100 : CacheImpl<A>(opts), opts_(opts) {
111 SetRoot(opts.root);
114 explicit ReplaceFstImpl(const ReplaceFstOptions &opts)
115 : CacheImpl<A>(opts), opts_(opts), root_(kNoLabel) {
551 const ReplaceFstOptions &opts)
552 : impl_(new ReplaceFstImpl<A>(fst_array, opts)) {}
676 ReplaceFstOptions opts(root);
677 opts.gc_limit = 0; // Cache only the last state for fastest copy.
678 *ofst = ReplaceFst<Arc>(ifst_array, opts);