Searched refs:CacheOptions (Results 1 - 25 of 28) sorted by relevance

12

/external/openfst/src/include/fst/
H A Dintersect.h39 explicit IntersectFstOptions(const CacheOptions &opts,
71 const CacheOptions opts = CacheOptions()) {
149 CacheOptions nopts;
70 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions opts = CacheOptions()) argument
H A Ddifference.h40 explicit DifferenceFstOptions(const CacheOptions &opts,
73 const CacheOptions &opts = CacheOptions()) {
77 ComposeFstOptions<A, R> copts(CacheOptions(),
166 CacheOptions nopts;
72 DifferenceFst(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts = CacheOptions()) argument
H A Dcompose.h52 struct ComposeFstOptions : public CacheOptions {
58 explicit ComposeFstOptions(const CacheOptions &opts,
61 : CacheOptions(opts), matcher1(mat1), matcher2(mat2),
83 struct ComposeFstImplOptions : public CacheOptions {
89 explicit ComposeFstImplOptions(const CacheOptions &opts,
92 : CacheOptions(opts), matcher1(mat1), matcher2(mat2),
124 const CacheOptions &opts)
517 const CacheOptions &opts = CacheOptions())
590 const CacheOptions
516 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts = CacheOptions()) argument
[all...]
H A Dcache.h37 struct CacheOptions { struct in namespace:fst
41 CacheOptions(bool g, size_t l) : gc(g), gc_limit(l) {} function in struct:fst::CacheOptions
42 CacheOptions() function in struct:fst::CacheOptions
131 explicit CacheBaseImpl(const CacheOptions &opts, C *allocator = 0)
640 explicit CacheImpl(const CacheOptions &opts)
H A Dfactor-weight.h44 struct FactorWeightOptions : CacheOptions {
51 FactorWeightOptions(const CacheOptions &opts, float d,
54 : CacheOptions(opts), delta(d), mode(m), final_ilabel(il),
H A Drmepsilon.h367 struct RmEpsilonFstOptions : CacheOptions {
370 RmEpsilonFstOptions(const CacheOptions &opts, float delta = kDelta)
371 : CacheOptions(opts), delta(delta) {}
H A Darcsort.h102 typedef CacheOptions ArcSortFstOptions;
H A Drandgen.h309 struct RandGenFstOptions : public CacheOptions {
316 RandGenFstOptions(const CacheOptions &copts, S *samp,
318 : CacheOptions(copts),
689 RandGenFstOptions<Sampler> fopts(CacheOptions(true, 0), arc_sampler,
H A Ddeterminize.h329 struct DeterminizeFstOptions : CacheOptions {
337 explicit DeterminizeFstOptions(const CacheOptions &opts,
341 : CacheOptions(opts), delta(del), subsequential_label(lab),
888 CacheOptions copts(GetCacheGc(), GetCacheLimit());
894 FactorWeightOptions<ToArc> fopts(CacheOptions(true, 0), delta_,
H A Darc-map.h298 struct ArcMapFstOptions : public CacheOptions {
302 ArcMapFstOptions() : CacheOptions(true, 0) {}
303 ArcMapFstOptions(const CacheOptions& opts) : CacheOptions(opts) {}
H A Dcompact-fst.h43 struct CompactFstOptions : public CacheOptions {
47 CompactFstOptions() : CacheOptions(true, 0) {}
48 CompactFstOptions(const CacheOptions &opts) : CacheOptions(opts) {}
711 : CacheImpl<A>(CacheOptions(impl.GetCacheGc(), impl.GetCacheLimit())),
H A Dreplace.h270 struct ReplaceFstOptions : CacheOptions {
276 ReplaceFstOptions(const CacheOptions &opts, int64 r)
277 : CacheOptions(opts),
H A Drational.h37 typedef CacheOptions RationalFstOptions;
H A Drelabel.h175 typedef CacheOptions RelabelFstOptions;
H A Dstate-map.h181 typedef CacheOptions StateMapFstOptions;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcache.h32 struct CacheOptions { struct in namespace:fst
37 CacheOptions(bool g, size_t l) : gc(g), gc_limit(l) {} function in struct:fst::CacheOptions
38 CacheOptions() function in struct:fst::CacheOptions
78 explicit CacheBaseImpl(const CacheOptions &opts)
377 explicit CacheImpl(const CacheOptions &opts)
H A Dcompose.h77 struct ComposeFstOptions : public CacheOptions {
78 explicit ComposeFstOptions(const CacheOptions &opts) : CacheOptions(opts) {}
106 const CacheOptions &opts)
343 const CacheOptions &opts)
H A Ddeterminize.h102 struct DeterminizeFstOptions : CacheOptions {
105 explicit DeterminizeFstOptions(const CacheOptions &opts, float del = kDelta)
106 : CacheOptions(opts), delta(del) {}
133 DeterminizeFstImplBase(const Fst<A> &fst, const CacheOptions &opts)
638 FactorWeightOptions fopts(CacheOptions(true, 0), opts.delta, true);
H A Dfactor-weight.h33 struct FactorWeightOptions : CacheOptions {
37 FactorWeightOptions(const CacheOptions &opts, float d, bool of)
38 : CacheOptions(opts), delta(d), final_only(of) {}
H A Dreplace.h35 struct ReplaceFstOptions : CacheOptions {
39 ReplaceFstOptions(const CacheOptions &opts, int64 r)
40 : CacheOptions(opts), root(r), epsilon_on_replace(false) {}
H A Drmepsilon.h300 struct RmEpsilonFstOptions : CacheOptions {
303 RmEpsilonFstOptions(const CacheOptions &opts, float delta = kDelta)
304 : CacheOptions(opts), delta(delta) {}
H A Darcsort.h67 typedef CacheOptions ArcSortFstOptions;
H A Dmap.h236 struct MapFstOptions : public CacheOptions {
240 MapFstOptions() : CacheOptions(true, 0) {}
241 MapFstOptions(const CacheOptions& opts) : CacheOptions(opts) {}
H A Drational.h30 typedef CacheOptions RationalFstOptions;
/external/openfst/src/include/fst/extensions/pdt/
H A Dexpand.h40 struct ExpandFstOptions : public CacheOptions {
46 const CacheOptions &opts = CacheOptions(),
50 : CacheOptions(opts), keep_parentheses(kp), stack(s), state_table(st) {}
353 const CacheOptions &opts = CacheOptions())
45 ExpandFstOptions( const CacheOptions &opts = CacheOptions(), bool kp = false, PdtStack<typename Arc::StateId, typename Arc::Label> *s = 0, PdtStateTable<typename Arc::StateId, typename Arc::StateId> *st = 0) argument
350 PrunedExpand(const Fst<A> &ifst, const vector<pair<Label, Label> > &parens, bool keep_parentheses = false, const CacheOptions &opts = CacheOptions()) argument

Completed in 186 milliseconds

12