Home | History | Annotate | Download | only in fst

Lines Matching refs:table_

312       table_(new EncodeTable<A>(flags)),
318 table_(mapper.table_),
320 table_->IncrRefCount();
327 table_(mapper.table_),
329 table_->IncrRefCount();
333 if (!table_->DecrRefCount()) delete table_;
364 const EncodeTable<A> &table() const { return *table_; }
367 return table_->Write(strm, source);
396 SymbolTable *InputSymbols() const { return table_->InputSymbols(); }
398 SymbolTable *OutputSymbols() const { return table_->OutputSymbols(); }
401 table_->SetInputSymbols(syms);
405 table_->SetOutputSymbols(syms);
411 EncodeTable<A>* table_;
415 : flags_(flags), type_(type), table_(table) {}
427 Label label = table_->Encode(arc);
448 const typename EncodeTable<A>::Tuple* tuple = table_->Decode(arc.ilabel);