Home
last modified time | relevance | path

Searched refs:inprops (Results 1 – 9 of 9) sorted by relevance

/external/openfst/src/lib/
Dproperties.cc38 uint64 ClosureProperties(uint64 inprops, bool star, bool delayed) { in ClosureProperties() argument
39 uint64 outprops = (kError | kAcceptor | kUnweighted | kAccessible) & inprops; in ClosureProperties()
42 kNotTopSorted | kNotString) & inprops; in ClosureProperties()
43 if (!delayed || inprops & kAccessible) in ClosureProperties()
46 kNotAccessible | kNotCoAccessible) & inprops; in ClosureProperties()
51 uint64 ComplementProperties(uint64 inprops) { in ComplementProperties() argument
56 inprops; in ComplementProperties()
57 if (inprops & kAccessible) in ComplementProperties()
116 uint64 DeterminizeProperties(uint64 inprops, bool has_subsequential_label) { in DeterminizeProperties() argument
118 if (((kAcceptor | kNoIEpsilons) & inprops) || has_subsequential_label) in DeterminizeProperties()
[all …]
/external/openfst/src/include/fst/
Dproperties.h323 inline uint64 SetStartProperties(uint64 inprops);
325 uint64 SetFinalProperties(uint64 inprops, Weight old_weight,
327 inline uint64 AddStateProperties(uint64 inprops);
329 uint64 AddArcProperties(uint64 inprops, typename A::StateId s, const A &arc,
331 inline uint64 DeleteStatesProperties(uint64 inprops);
332 inline uint64 DeleteAllStatesProperties(uint64 inprops, uint64 staticProps);
333 inline uint64 DeleteArcsProperties(uint64 inprops);
335 uint64 ClosureProperties(uint64 inprops, bool star, bool delayed = false);
336 uint64 ComplementProperties(uint64 inprops);
340 uint64 DeterminizeProperties(uint64 inprops, bool has_subsequential_label);
[all …]
Dmatcher.h291 virtual uint64 Properties(uint64 inprops) const { in Properties() argument
292 uint64 outprops = inprops; in Properties()
524 uint64 RhoMatcher<M>::Properties(uint64 inprops) const { in Properties() argument
525 uint64 outprops = matcher_->Properties(inprops); in Properties()
713 uint64 SigmaMatcher<M>::Properties(uint64 inprops) const { in Properties() argument
714 uint64 outprops = matcher_->Properties(inprops); in Properties()
930 uint64 PhiMatcher<M>::Properties(uint64 inprops) const { in Properties() argument
931 uint64 outprops = matcher_->Properties(inprops); in Properties()
Darc-map.h846 uint64 Properties(uint64 inprops) const { in Properties()
847 uint64 outprops = inprops & kOLabelInvariantProperties & in Properties()
939 uint64 Properties(uint64 inprops) const { in Properties()
940 uint64 outprops = inprops & kOLabelInvariantProperties & in Properties()
Dencode.h347 uint64 Properties(uint64 inprops) { in Properties() argument
348 uint64 outprops = inprops; in Properties()
Dlookahead-filter.h271 uint64 Properties(uint64 inprops) const { in Properties() argument
272 uint64 outprops = filter_.Properties(inprops); in Properties()
Dlookahead-matcher.h502 uint64 Properties(uint64 inprops) const { in Properties() argument
503 uint64 outprops = matcher_.Properties(inprops); in Properties()
Dreplace.h366 vector<uint64> inprops; in ReplaceFstImpl() local
383 inprops.push_back(fst->Properties(kCopyProperties, false)); in ReplaceFstImpl()
406 SetProperties(ReplaceProperties(inprops, root_ - 1, epsilon_on_replace_, in ReplaceFstImpl()
/external/openfst/src/include/fst/extensions/pdt/
Dexpand.h54 inline uint64 ExpandProperties(uint64 inprops) { in ExpandProperties() argument
55 return inprops & (kAcceptor | kAcyclic | kInitialAcyclic | kUnweighted); in ExpandProperties()