Lines Matching defs:Map
0 // map.h
17 // Class to map over/transform arcs e.g., change semirings or
63 // The Map functions and classes below will use the FinalAction()
68 // We include a various map versions below. One dimension of
74 // decoding. We also include map versions that pass the mapper
81 void Map(MutableFst<A> *fst, C* mapper) {
149 void Map(MutableFst<A> *fst, C mapper) {
150 Map(fst, &mapper);
158 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) {
231 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) {
232 Map(ifst, ofst, &mapper);
402 SetType("map");
792 typename Map::iterator miter = map_.find(w1);
838 typedef std::unordered_map<SW, Label, StringKey> Map;
841 Map map_;
896 // Mapper to map all non-Zero() weights to One().