• Home
  • Raw
  • Download

Lines Matching refs:flags_

118       : flags_(encode_flags),  in EncodeTable()
133 flags_ & kEncodeLabels ? arc.olabel : 0, in Encode()
134 flags_ & kEncodeWeights ? arc.weight : Weight::One()); in Encode()
148 flags_ & kEncodeLabels ? arc.olabel : 0, in GetLabel()
149 flags_ & kEncodeWeights ? arc.weight : Weight::One()); in GetLabel()
173 const uint32 flags() const { return flags_ & kEncodeFlags; } in flags()
188 flags_ |= kEncodeHasISymbols; in SetInputSymbols()
191 flags_ &= ~kEncodeHasISymbols; in SetInputSymbols()
199 flags_ |= kEncodeHasOSymbols; in SetOutputSymbols()
202 flags_ &= ~kEncodeHasOSymbols; in SetOutputSymbols()
207 uint32 flags_;
220 WriteType(strm, flags_); in Write()
230 if (flags_ & kEncodeHasISymbols) in Write()
233 if (flags_ & kEncodeHasOSymbols) in Write()
310 : flags_(flags), in EncodeMapper()
316 : flags_(mapper.flags_), in EncodeMapper()
325 : flags_(mapper.flags_), in EncodeMapper()
339 return (type_ == ENCODE && (flags_ & kEncodeWeights)) ? in FinalAction()
352 if (flags_ & kEncodeLabels) in Properties()
354 if (flags_ & kEncodeWeights) in Properties()
362 const uint32 flags() const { return flags_; } in flags()
409 uint32 flags_;
415 : flags_(flags), type_(type), table_(table) {} in EncodeMapper()
422 if ((arc.nextstate == kNoStateId && !(flags_ & kEncodeWeights)) || in operator()
423 (arc.nextstate == kNoStateId && (flags_ & kEncodeWeights) && in operator()
429 flags_ & kEncodeLabels ? label : arc.olabel, in operator()
430 flags_ & kEncodeWeights ? Weight::One() : arc.weight, in operator()
438 if (flags_ & kEncodeLabels && arc.ilabel != arc.olabel) { in operator()
443 if (flags_ & kEncodeWeights && arc.weight != Weight::One()) { in operator()
455 flags_ & kEncodeLabels ? tuple->olabel : arc.olabel, in operator()
456 flags_ & kEncodeWeights ? tuple->weight : arc.weight, in operator()