Home | History | Annotate | Download | only in Support

Lines Matching defs:Lines

517   SmallVector<StringRef, 32> Lines;
518 Str.split(Lines, "\n");
522 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
523 if (Lines[I].startswith("CPU implementer"))
524 Implementer = Lines[I].substr(15).ltrim("\t :");
528 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
529 if (Lines[I].startswith("CPU part"))
533 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
572 SmallVector<StringRef, 32> Lines;
573 Str.split(Lines, "\n");
578 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
579 if (Lines[I].startswith("Features")) {
580 Lines[I].split(CPUFeatures, " ");