Lines Matching refs:base_
1167 base_ = fst.InitMatcher(match_type); in Matcher()
1168 if (!base_) in Matcher()
1169 base_ = new SortedMatcher<F>(fst, match_type); in Matcher()
1173 base_ = matcher.base_->Copy(safe);
1177 Matcher(MatcherBase<Arc>* base_matcher) { base_ = base_matcher; } in Matcher()
1179 ~Matcher() { delete base_; } in ~Matcher() local
1185 MatchType Type(bool test) const { return base_->Type(test); } in Type()
1186 void SetState(StateId s) { base_->SetState(s); } in SetState()
1187 bool Find(Label label) { return base_->Find(label); } in Find()
1188 bool Done() const { return base_->Done(); } in Done()
1189 const Arc& Value() const { return base_->Value(); } in Value()
1190 void Next() { base_->Next(); } in Next()
1191 const F &GetFst() const { return static_cast<const F &>(base_->GetFst()); } in GetFst()
1192 uint64 Properties(uint64 props) const { return base_->Properties(props); } in Properties()
1193 uint32 Flags() const { return base_->Flags() & kMatcherFlags; } in Flags()
1196 MatcherBase<Arc> *base_;