Home | History | Annotate | Download | only in fst

Lines Matching refs:base_

719     base_ = fst.InitMatcher(match_type);
720 if (!base_)
721 base_ = new SortedMatcher<F>(fst, match_type);
726 base_ = matcher.base_->Copy(safe);
730 ~LookAheadMatcher() { delete base_; }
737 MatchType Type(bool test) const { return base_->Type(test); }
738 void SetState(StateId s) { base_->SetState(s); }
739 bool Find(Label label) { return base_->Find(label); }
740 bool Done() const { return base_->Done(); }
741 const Arc& Value() const { return base_->Value(); }
742 void Next() { base_->Next(); }
743 const F &GetFst() const { return static_cast<const F &>(base_->GetFst()); }
745 uint64 Properties(uint64 props) const { return base_->Properties(props); }
747 uint32 Flags() const { return base_->Flags(); }
752 LBase *lbase = static_cast<LBase *>(base_);
761 LBase *lbase = static_cast<LBase *>(base_);
770 LBase *lbase = static_cast<LBase *>(base_);
779 LBase *lbase = static_cast<LBase *>(base_);
788 LBase *lbase = static_cast<LBase *>(base_);
796 lookahead_ = base_->Flags() &
805 MatcherBase<Arc> *base_;