Home | History | Annotate | Download | only in fst

Lines Matching refs:properties_

111   FstHeader() : version_(0), flags_(0), properties_(0), start_(-1),
117 uint64 Properties() const { return properties_; }
126 void SetProperties(uint64 properties) { properties_ = properties; }
140 uint64 properties_; // FST property bits
609 : properties_(0), type_("null"), isymbols_(0), osymbols_(0) {}
612 : properties_(impl.properties_), type_(impl.type_),
625 virtual uint64 Properties() const { return properties_; }
627 virtual uint64 Properties(uint64 mask) const { return properties_ & mask; }
630 properties_ &= kError; // kError can't be cleared
631 properties_ |= props;
635 properties_ &= ~mask | kError; // kError can't be cleared
636 properties_ |= props & mask;
643 properties_ |= kError;
693 hdr->SetProperties(properties_);
768 mutable uint64 properties_; // Property bits
810 properties_ = hdr->Properties();