Home
last modified time | relevance | path

Searched refs:prev_arc (Results 1 – 4 of 4) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dtest-properties.h126 Arc prev_arc(kNoLabel, kNoLabel, Weight::One(), 0); in ComputeProperties()
162 if (prev_arc.ilabel != kNoLabel && arc.ilabel < prev_arc.ilabel) { in ComputeProperties()
166 if (prev_arc.olabel != kNoLabel && arc.olabel < prev_arc.olabel) { in ComputeProperties()
182 prev_arc = arc; in ComputeProperties()
/external/openfst/src/include/fst/
Dtest-properties.h128 Arc prev_arc; in ComputeProperties() local
166 if (arc.ilabel < prev_arc.ilabel) { in ComputeProperties()
170 if (arc.olabel < prev_arc.olabel) { in ComputeProperties()
187 prev_arc = arc; in ComputeProperties()
Dproperties.h330 const A *prev_arc);
411 const A &arc, const A *prev_arc) { in AddArcProperties() argument
429 if (prev_arc != 0) { in AddArcProperties()
430 if (prev_arc->ilabel > arc.ilabel) { in AddArcProperties()
434 if (prev_arc->olabel > arc.olabel) { in AddArcProperties()
Dedit-fst.h199 const A *prev_arc = NULL; in AddArc() local
203 prev_arc = &(arc_it.Value()); in AddArc()
206 return prev_arc; in AddArc()
534 const A *prev_arc = data_->AddArc(s, arc, wrapped_); in AddArc() local
535 SetProperties(AddArcProperties(FstImpl<A>::Properties(), s, arc, prev_arc)); in AddArc()