Home | History | Annotate | Download | only in fst

Lines Matching defs:properties_

104   FstHeader() : version_(0), flags_(0), properties_(0), start_(-1),
110 uint64 Properties() const { return properties_; }
119 void SetProperties(uint64 properties) { properties_ = properties; }
133 uint64 properties_; // FST property bits
603 : properties_(0), type_("null"), isymbols_(0), osymbols_(0) {}
606 : properties_(impl.properties_), type_(impl.type_),
619 virtual uint64 Properties() const { return properties_; }
621 virtual uint64 Properties(uint64 mask) const { return properties_ & mask; }
624 properties_ &= kError; // kError can't be cleared
625 properties_ |= props;
629 properties_ &= ~mask | kError; // kError can't be cleared
630 properties_ |= props & mask;
637 properties_ |= kError;
687 hdr->SetProperties(properties_);
761 mutable uint64 properties_; // Property bits
803 properties_ = hdr->Properties();