Home | History | Annotate | Download | only in fst

Lines Matching refs:t_

157       : fst_(fst), t_(t) {
160 if (t_)
161 t_->IncrRefCount();
166 : fst_(fst), t_(t) {
169 if (t_)
170 t_->IncrRefCount();
174 : fst_(impl.fst_), t_(impl.t_) {
177 if (t_)
178 t_->IncrRefCount();
182 if (t_ && !t_->DecrRefCount())
183 delete t_;
251 bool have_addon = t_;
254 t_->Write(strm);
270 T *GetAddOn() const { return t_; }
274 if (t == t_)
276 if (t_ && !t_->DecrRefCount())
277 delete t_;
278 t_ = t;
279 if (t_)
280 t_->IncrRefCount();
284 explicit AddOnImpl(const string &type) : t_(0) {
295 T *t_;