Home | History | Annotate | Download | only in i18n

Lines Matching defs:state_map

302 // Create a new state corresponding to |set|, add it |states| and |state_map|
306 StateMap* state_map) {
310 const StateMap::const_iterator where = state_map->find(rest);
311 const uint8 target_state = where == state_map->end()
312 ? MakeState(rest, states, state_map)
324 CHECK(state_map->insert(std::make_pair(set, new_state_number)).second);
331 StateMap state_map;
332 state_map.insert(std::make_pair(StringSet(), 0));
338 const StateMap::const_iterator where = state_map.find(rest);
339 const uint8 target_state = where == state_map.end()
340 ? MakeState(rest, &states, &state_map)