Lines Matching defs:it
34 ToolMap::iterator it = getTools(tools)->find(toolCmd);
35 return (it == getTools(tools)->end()) ? nullptr : it->getValue();
45 for (ToolMap::iterator it = getTools(tools)->begin(),
46 ei = getTools(tools)->end(); it != ei; ++it) {
47 toolNames.push_back(it->getKey());
48 unsigned len = it->getKey().size();
54 for (std::vector<llvm::StringRef>::iterator it = toolNames.begin(),
55 ei = toolNames.end(); it != ei; ++it) {
57 out << " " << (*it);
58 unsigned spaces = (maxName + 3) - (it->size());
62 out << getTool(*it)->getDescription() << '\n';