Lines Matching refs:Properties
92 using FstImpl<A>::Properties;
110 uint64 props1 = fst1.Properties(kFstProperties, false); in ComposeFstImplBase()
111 uint64 props2 = fst2.Properties(kFstProperties, false); in ComposeFstImplBase()
349 bool osorted = fst1.Properties(kOLabelSorted, false); in ComposeFstImpl()
350 bool isorted = fst2.Properties(kILabelSorted, false); in ComposeFstImpl()
357 osorted = fst1.Properties(kOLabelSorted, true); in ComposeFstImpl()
366 isorted = fst2.Properties(kILabelSorted, true); in ComposeFstImpl()
373 osorted = fst1.Properties(kOLabelSorted, true); in ComposeFstImpl()
375 isorted = fst2.Properties(kILabelSorted, true); in ComposeFstImpl()
721 virtual uint64 Properties(uint64 mask, bool test) const { in Properties() function
727 return impl_->Properties(mask); in Properties()
778 uint64 props1 = fst1.Properties(sort_props_mask, true); in Init()
779 uint64 props2 = fst2.Properties(sort_props_mask, true); in Init()
781 props1 |= fst1.Properties(opt_props_mask, false); in Init()
782 props2 |= fst2.Properties(opt_props_mask, false); in Init()
784 if (!(Weight::Properties() & kCommutative)) { in Init()
785 props1 |= fst1.Properties(kUnweighted, true); in Init()
786 props2 |= fst2.Properties(kUnweighted, true); in Init()