Home | History | Annotate | Download | only in fst

Lines Matching defs:nopts

583     ComposeFstImplOptions<M, M, F, T> nopts(opts, opts.matcher1, opts.matcher2,
585 return CreateBase2(fst1, fst2, nopts);
595 ComposeFstOptions<Arc> nopts(opts);
596 return CreateBase1(fst1, fst2, nopts);
602 ComposeFstOptions<Arc, M, F> nopts(opts);
603 return CreateBase1(fst1, fst2, nopts);
609 ComposeFstOptions<Arc, M, F> nopts(opts);
610 return CreateBase1(fst1, fst2, nopts);
705 CacheOptions nopts;
706 nopts.gc_limit = 0; // Cache only the last state for fastest copy.
707 *ofst = ComposeFst<Arc>(ifst1, ifst2, nopts);