HomeSort by relevance Sort by last modified time
    Searched refs:VectorBiTable (Results 1 - 2 of 2) sorted by null

  /external/openfst/src/include/fst/
state-table.h 116 : public VectorBiTable<typename T::StateId, T, FP> {
120 using VectorBiTable<StateId, T, FP>::FindId;
121 using VectorBiTable<StateId, T, FP>::FindEntry;
122 using VectorBiTable<StateId, T, FP>::Size;
123 using VectorBiTable<StateId, T, FP>::Fingerprint;
125 explicit VectorStateTable(FP *fp = 0) : VectorBiTable<StateId, T, FP>(fp) {}
bi-table.h 184 // VectorBiTable constructs the FP object. The user can instead
185 // pass in this object; in that case, VectorBiTable takes its
188 class VectorBiTable {
190 explicit VectorBiTable(FP *fp = 0) : fp_(fp ? fp : new FP()) {}
192 ~VectorBiTable() { delete fp_; }
217 DISALLOW_COPY_AND_ASSIGN(VectorBiTable);

Completed in 1079 milliseconds