Home | History | Annotate | Download | only in fst

Lines Matching defs:nopts

531     ComposeFstImplOptions<M, M, F, T> nopts(opts, opts.matcher1, opts.matcher2,
533 return CreateBase2(fst1, fst2, nopts);
542 ComposeFstOptions<Arc> nopts(opts);
543 return CreateBase1(fst1, fst2, nopts);
548 ComposeFstOptions<Arc, M, F> nopts(opts);
549 return CreateBase1(fst1, fst2, nopts);
554 ComposeFstOptions<Arc, M, F> nopts(opts);
555 return CreateBase1(fst1, fst2, nopts);
650 CacheOptions nopts;
651 nopts.gc_limit = 0; // Cache only the last state for fastest copy.
652 *ofst = ComposeFst<Arc>(ifst1, ifst2, nopts);