Searched refs:ConstFst (Results 1 - 12 of 12) sorted by last modified time

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconst-fst.h28 template <class A> class ConstFst;
180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
215 LOG(ERROR) << "ConstFst::Write: Write failed: " << opts.source;
224 class ConstFst : public ExpandedFst<A> { class in namespace:fst
226 friend class StateIterator< ConstFst<A> >;
227 friend class ArcIterator< ConstFst<A> >;
233 ConstFst() : impl_(new ConstFstImpl<A>()) {} function in class:fst::ConstFst
235 ConstFst(const ConstFst< function in class:fst::ConstFst
239 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} function in class:fst::ConstFst
329 ConstFst(ConstFstImpl<A> *impl) : impl_(impl) {} function in class:fst::ConstFst
[all...]
H A Dfst-decl.h33 template <class A> class ConstFst;
57 typedef ConstFst<StdArc> StdConstFst;
H A Dfst.cpp41 // Register VectorFst and ConstFst for common arcs types
45 REGISTER_FST(ConstFst, StdArc);
46 REGISTER_FST(ConstFst, LogArc);
/external/openfst/
H A Dconfigure1412 --enable-const-fsts enable all ConstFst extensions
/external/openfst/src/extensions/const/
H A Dconst16-fst.cc21 using fst::ConstFst;
26 // Register ConstFst for common arcs types with uint16 size type
27 static FstRegisterer< ConstFst<StdArc, uint16> >
29 static FstRegisterer< ConstFst<LogArc, uint16> >
31 static FstRegisterer< ConstFst<Log64Arc, uint16> >
H A Dconst64-fst.cc21 using fst::ConstFst;
26 // Register ConstFst for common arcs types with uint64 size type
27 static FstRegisterer< ConstFst<StdArc, uint64> >
29 static FstRegisterer< ConstFst<LogArc, uint64> >
31 static FstRegisterer< ConstFst<Log64Arc, uint64> >
H A Dconst8-fst.cc21 using fst::ConstFst;
26 // Register ConstFst for common arcs types with uint8 size type
27 static FstRegisterer< ConstFst<StdArc, uint8> >
29 static FstRegisterer< ConstFst<LogArc, uint8> >
31 static FstRegisterer< ConstFst<Log64Arc, uint8> >
/external/openfst/src/include/fst/
H A Dconst-fst.h38 template <class A, class U> class ConstFst;
109 friend class ConstFst<A, U>; // Allow finding narcs_, nstates_ during Write
221 LOG(ERROR) << "ConstFst::Read: Alignment failed: " << opts.source;
229 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
236 LOG(ERROR) << "ConstFst::Read: Alignment failed: " << opts.source;
244 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
258 class ConstFst : public ImplToExpandedFst< ConstFstImpl<A, U> > { class in namespace:fst
260 friend class StateIterator< ConstFst<A, U> >;
261 friend class ArcIterator< ConstFst<A, U> >;
269 ConstFst() function in class:fst::ConstFst
271 explicit ConstFst(const Fst<A> &fst) function in class:fst::ConstFst
274 ConstFst(const ConstFst<A, U> &fst) argument
315 explicit ConstFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {} function in class:fst::ConstFst
435 StateIterator(const ConstFst<A, U> &fst) argument
462 ArcIterator(const ConstFst<A, U> &fst, StateId s) argument
[all...]
H A Dfst-decl.h47 template <class A, class U = uint32> class ConstFst;
90 typedef ConstFst<StdArc> StdConstFst;
H A Dmatcher-fst.h309 typedef MatcherFst<ConstFst<StdArc>,
310 ArcLookAheadMatcher<SortedMatcher<ConstFst<StdArc> > >,
313 typedef MatcherFst<ConstFst<LogArc>,
314 ArcLookAheadMatcher<SortedMatcher<ConstFst<LogArc> > >,
329 typedef MatcherFst<ConstFst<StdArc>,
330 LabelLookAheadMatcher<SortedMatcher<ConstFst<StdArc> >,
336 typedef MatcherFst<ConstFst<LogArc>,
337 LabelLookAheadMatcher<SortedMatcher<ConstFst<LogArc> >,
343 typedef MatcherFst<ConstFst<StdArc>,
344 LabelLookAheadMatcher<SortedMatcher<ConstFst<StdAr
[all...]
/external/openfst/src/lib/
H A Dfst.cc60 // Register VectorFst, ConstFst and EditFst for common arcs types
64 REGISTER_FST(ConstFst, StdArc);
65 REGISTER_FST(ConstFst, LogArc);
66 REGISTER_FST(ConstFst, Log64Arc);
/external/openfst/src/test/
H A Dfst_test.cc95 REGISTER_FST(ConstFst, CustomArc);
102 static fst::FstRegisterer<ConstFst<StdArc, uint16> >
113 using fst::ConstFst;
139 // ConstFst<StdArc> tests
141 FstTester< ConstFst<StdArc> > std_const_tester;
169 // ConstFst<CustomArc> tests
171 FstTester< ConstFst<CustomArc> > std_const_tester;
188 // ConstFst<StdArc, uint16> tests
190 FstTester< ConstFst<StdArc, uint16> > std_const_tester;

Completed in 5967 milliseconds