Lines Matching defs:Lines

155   SmallVector<StringRef, 32> Lines;
156 ProcCpuinfoContent.split(Lines, "\n");
161 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
162 if (Lines[I].startswith("CPU implementer"))
163 Implementer = Lines[I].substr(15).ltrim("\t :");
164 if (Lines[I].startswith("Hardware"))
165 Hardware = Lines[I].substr(8).ltrim("\t :");
176 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
177 if (Lines[I].startswith("CPU part"))
181 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
204 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
205 if (Lines[I].startswith("CPU part")) {
206 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
220 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
221 if (Lines[I].startswith("CPU part"))
225 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
231 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
232 if (Lines[I].startswith("CPU part"))
236 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
258 for (auto I : Lines)
264 for (auto I : Lines)
288 SmallVector<StringRef, 32> Lines;
289 ProcCpuinfoContent.split(Lines, "\n");
293 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
294 if (Lines[I].startswith("features")) {
295 size_t Pos = Lines[I].find(":");
297 Lines[I].drop_front(Pos + 1).split(CPUFeatures, ' ');
312 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
313 if (Lines[I].startswith("processor ")) {
314 size_t Pos = Lines[I].find("machine = ");
318 if (!Lines[I].drop_front(Pos).getAsInteger(10, Id)) {
1498 SmallVector<StringRef, 32> Lines;
1499 P->getBuffer().split(Lines, "\n");
1504 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
1505 if (Lines[I].startswith("Features")) {
1506 Lines[I].split(CPUFeatures, ' ');