Home | History | Annotate | Download | only in editing

Lines Matching refs:CommandMap

79 typedef HashMap<String, const EditorInternalCommand*, CaseFoldingHash> CommandMap;
1400 static const CommandMap& createCommandMap()
1588 CommandMap& commandMap = *new CommandMap;
1591 ASSERT(!commandMap.get(commands[i].name));
1592 commandMap.set(commands[i].name, &commands[i].command);
1595 return commandMap;
1600 static const CommandMap& commandMap = createCommandMap();
1601 return commandName.isEmpty() ? 0 : commandMap.get(commandName);