Home | History | Annotate | Download | only in Driver

Lines Matching refs:Ms

154   std::vector<Multilib> Ms;
155 Ms.push_back(M1);
156 Ms.push_back(M2);
157 return Either(Ms);
162 std::vector<Multilib> Ms;
163 Ms.push_back(M1);
164 Ms.push_back(M2);
165 Ms.push_back(M3);
166 return Either(Ms);
171 std::vector<Multilib> Ms;
172 Ms.push_back(M1);
173 Ms.push_back(M2);
174 Ms.push_back(M3);
175 Ms.push_back(M4);
176 return Either(Ms);
182 std::vector<Multilib> Ms;
183 Ms.push_back(M1);
184 Ms.push_back(M2);
185 Ms.push_back(M3);
186 Ms.push_back(M4);
187 Ms.push_back(M5);
188 return Either(Ms);
318 const multilib_list &Ms) {
319 multilib_list Copy(Ms);
325 multilib_list &Ms) {
326 Ms.erase(std::remove_if(Ms.begin(), Ms.end(),
328 Ms.end());
331 raw_ostream &clang::driver::operator<<(raw_ostream &OS, const MultilibSet &MS) {
332 MS.print(OS);