Lines Matching defs:Lines
175 SmallVector<StringRef, 32> Lines;
176 ProcCpuinfoContent.split(Lines, '\n');
182 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
183 if (Lines[I].starts_with("CPU implementer"))
184 Implementer = Lines[I].substr(15).ltrim("\t :");
185 if (Lines[I].starts_with("Hardware"))
186 Hardware = Lines[I].substr(8).ltrim("\t :");
187 if (Lines[I].starts_with("CPU part"))
188 Part = Lines[I].substr(8).ltrim("\t :");
328 for (auto I : Lines)
334 for (auto I : Lines)
441 SmallVector<StringRef, 32> Lines;
442 ProcCpuinfoContent.split(Lines, '\n');
446 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
447 if (Lines[I].starts_with("features")) {
448 size_t Pos = Lines[I].find(':');
450 Lines[I].drop_front(Pos + 1).split(CPUFeatures, ' ');
465 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
466 if (Lines[I].starts_with("processor ")) {
467 size_t Pos = Lines[I].find("machine = ");
471 if (!Lines[I].drop_front(Pos).getAsInteger(10, Id))
483 SmallVector<StringRef> Lines;
484 ProcCpuinfoContent.split(Lines, '\n');
488 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
489 if (Lines[I].starts_with("uarch")) {
490 UArch = Lines[I].substr(5).ltrim("\t :");
1690 SmallVector<StringRef> Lines;
1691 ProcCpuinfoContent.split(Lines, '\n');
1695 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
1696 if (Lines[I].starts_with("cpu")) {
1697 Cpu = Lines[I].substr(5).ltrim("\t :");
2030 SmallVector<StringRef, 32> Lines;
2031 P->getBuffer().split(Lines, '\n');
2036 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
2037 if (Lines[I].starts_with("Features")) {
2038 Lines[I].split(CPUFeatures, ' ');