Lines Matching refs:m_lKey2Commands
66 m_lKey2Commands = rCopy.m_lKey2Commands; in AcceleratorCache()
83 m_lKey2Commands = rCopy.m_lKey2Commands; in takeOver()
102 return (m_lKey2Commands.find(aKey) != m_lKey2Commands.end()); in hasKey()
123 lKeys.reserve(m_lKey2Commands.size()); in getAllKeys()
126 TKey2Commands::const_iterator pEnd = m_lKey2Commands.end(); in getAllKeys()
127 for ( pIt = m_lKey2Commands.begin(); in getAllKeys()
148 m_lKey2Commands[aKey] = sCommand; in setKeyCommandPair()
186 TKey2Commands::const_iterator pKey = m_lKey2Commands.find(aKey); in getCommandByKey()
187 if (pKey == m_lKey2Commands.end()) in getCommandByKey()
205 TKey2Commands::const_iterator pKey = m_lKey2Commands.find(aKey); in removeKey()
206 if (pKey == m_lKey2Commands.end()) in removeKey()
213 pKey = m_lKey2Commands.end(); // nobody should use an undefined value .-) in removeKey()
216 m_lKey2Commands.erase(aKey); in removeKey()