HomeSort by relevance Sort by last modified time
    Searched refs:CacheImpl (Results 1 - 10 of 10) sorted by null

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsort.h 71 class ArcSortFstImpl : public CacheImpl<A> {
81 using VectorFstBaseImpl<typename CacheImpl<A>::State>::NumStates;
83 using CacheImpl<A>::HasArcs;
84 using CacheImpl<A>::HasFinal;
85 using CacheImpl<A>::HasStart;
92 : CacheImpl<A>(opts), fst_(fst.Copy()), comp_(comp) {
113 return CacheImpl<A>::Start();
119 return CacheImpl<A>::Final(s);
125 return CacheImpl<A>::NumArcs(s);
131 return CacheImpl<A>::NumInputEpsilons(s)
    [all...]
relabel.h 147 class RelabelFstImpl : public CacheImpl<A> {
156 using CacheImpl<A>::HasStart;
157 using CacheImpl<A>::HasArcs;
168 : CacheImpl<A>(opts), fst_(fst.Copy()),
195 : CacheImpl<A>(opts), fst_(fst.Copy()),
236 return CacheImpl<A>::Start();
243 return CacheImpl<A>::Final(s);
250 return CacheImpl<A>::NumArcs(s);
257 return CacheImpl<A>::NumInputEpsilons(s);
264 return CacheImpl<A>::NumOutputEpsilons(s)
    [all...]
replace.h 59 class ReplaceFstImpl : public CacheImpl<A> {
69 using CacheImpl<A>::HasStart;
70 using CacheImpl<A>::HasArcs;
71 using CacheImpl<A>::SetStart;
100 : CacheImpl<A>(opts), opts_(opts) {
115 : CacheImpl<A>(opts), opts_(opts), root_(kNoLabel) {
235 return CacheImpl<A>::Start();
252 return CacheImpl<A>::Final(s);
258 return CacheImpl<A>::NumArcs(s);
264 return CacheImpl<A>::NumInputEpsilons(s)
    [all...]
factor-weight.h 135 : public CacheImpl<A> {
163 : CacheImpl<A>(opts), fst_(fst.Copy()), delta_(opts.delta),
185 return CacheImpl<A>::Start();
201 return CacheImpl<A>::Final(s);
207 return CacheImpl<A>::NumArcs(s);
213 return CacheImpl<A>::NumInputEpsilons(s);
219 return CacheImpl<A>::NumOutputEpsilons(s);
225 CacheImpl<A>::InitArcIterator(s, data);
synchronize.h 39 : public CacheImpl<A> {
73 : CacheImpl<A>(opts), fst_(fst.Copy()) {
103 return CacheImpl<A>::Start();
115 return CacheImpl<A>::Final(s);
121 return CacheImpl<A>::NumArcs(s);
127 return CacheImpl<A>::NumInputEpsilons(s);
133 return CacheImpl<A>::NumOutputEpsilons(s);
139 CacheImpl<A>::InitArcIterator(s, data);
determinize.h 118 class DeterminizeFstImplBase : public CacheImpl<A> {
136 : CacheImpl<A>(opts), fst_(fst.Copy()) {
154 return CacheImpl<A>::Start();
162 return CacheImpl<A>::Final(s);
170 return CacheImpl<A>::NumArcs(s);
176 return CacheImpl<A>::NumInputEpsilons(s);
182 return CacheImpl<A>::NumOutputEpsilons(s);
188 CacheImpl<A>::InitArcIterator(s, data);
371 CacheImpl<A>::AddArc(s, arc);
502 CacheImpl<A>::AddArc(s, aiter.Value())
    [all...]
map.h 249 class MapFstImpl : public CacheImpl<B> {
257 using VectorFstBaseImpl<typename CacheImpl<B>::State>::NumStates;
259 using CacheImpl<B>::HasArcs;
260 using CacheImpl<B>::HasFinal;
261 using CacheImpl<B>::HasStart;
271 : CacheImpl<B>(opts), fst_(fst.Copy()),
281 : CacheImpl<B>(opts), fst_(fst.Copy()),
298 return CacheImpl<B>::Start();
331 return CacheImpl<B>::Final(s);
337 return CacheImpl<B>::NumArcs(s)
    [all...]
rmepsilon.h 314 class RmEpsilonFstImpl : public CacheImpl<A> {
332 : CacheImpl<A>(opts),
353 return CacheImpl<A>::Start();
360 return CacheImpl<A>::Final(s);
366 return CacheImpl<A>::NumArcs(s);
372 return CacheImpl<A>::NumInputEpsilons(s);
378 return CacheImpl<A>::NumOutputEpsilons(s);
384 CacheImpl<A>::InitArcIterator(s, data);
cache.h 276 VLOG(2) << "CacheImpl: Enter GC: object = " << Type() << "(" << this
305 VLOG(2) << "CacheImpl: Exit GC: object = " << Type() << "(" << this
371 class CacheImpl : public CacheBaseImpl< CacheState<A> > {
375 CacheImpl() {}
377 explicit CacheImpl(const CacheOptions &opts)
381 DISALLOW_EVIL_CONSTRUCTORS(CacheImpl);
compose.h 88 class ComposeFstImplBase : public CacheImpl<A> {
108 :CacheImpl<A>(opts), fst1_(fst1.Copy()), fst2_(fst2.Copy()) {
134 return CacheImpl<A>::Start();
142 return CacheImpl<A>::Final(s);
150 return CacheImpl<A>::NumArcs(s);
156 return CacheImpl<A>::NumInputEpsilons(s);
162 return CacheImpl<A>::NumOutputEpsilons(s);
168 CacheImpl<A>::InitArcIterator(s, data);
447 CacheImpl<A>::AddArc(s, arc);
    [all...]

Completed in 25 milliseconds