Lines Matching defs:Lines

166   SmallVector<StringRef, 32> Lines;
167 ProcCpuinfoContent.split(Lines, "\n");
173 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
174 if (Lines[I].starts_with("CPU implementer"))
175 Implementer = Lines[I].substr(15).ltrim("\t :");
176 if (Lines[I].starts_with("Hardware"))
177 Hardware = Lines[I].substr(8).ltrim("\t :");
178 if (Lines[I].starts_with("CPU part"))
179 Part = Lines[I].substr(8).ltrim("\t :");
318 for (auto I : Lines)
324 for (auto I : Lines)
399 SmallVector<StringRef, 32> Lines;
400 ProcCpuinfoContent.split(Lines, "\n");
404 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
405 if (Lines[I].starts_with("features")) {
406 size_t Pos = Lines[I].find(':');
408 Lines[I].drop_front(Pos + 1).split(CPUFeatures, ' ');
423 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
424 if (Lines[I].starts_with("processor ")) {
425 size_t Pos = Lines[I].find("machine = ");
429 if (!Lines[I].drop_front(Pos).getAsInteger(10, Id))
441 SmallVector<StringRef> Lines;
442 ProcCpuinfoContent.split(Lines, "\n");
446 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
447 if (Lines[I].starts_with("uarch")) {
448 UArch = Lines[I].substr(5).ltrim("\t :");
1619 SmallVector<StringRef> Lines;
1620 ProcCpuinfoContent.split(Lines, "\n");
1624 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
1625 if (Lines[I].starts_with("cpu")) {
1626 Cpu = Lines[I].substr(5).ltrim("\t :");
1943 SmallVector<StringRef, 32> Lines;
1944 P->getBuffer().split(Lines, "\n");
1949 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
1950 if (Lines[I].starts_with("Features")) {
1951 Lines[I].split(CPUFeatures, ' ');