Home | History | Annotate | Download | only in Support

Lines Matching refs:Lines

600   SmallVector<StringRef, 32> Lines;
601 Str.split(Lines, "\n");
605 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
606 if (Lines[I].startswith("CPU implementer"))
607 Implementer = Lines[I].substr(15).ltrim("\t :");
611 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
612 if (Lines[I].startswith("CPU part"))
616 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
632 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
633 if (Lines[I].startswith("CPU part"))
637 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
664 SmallVector<StringRef, 32> Lines;
665 Str.split(Lines, "\n");
666 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
667 if (Lines[I].startswith("processor ")) {
668 size_t Pos = Lines[I].find("machine = ");
672 if (!Lines[I].drop_front(Pos).getAsInteger(10, Id)) {
708 SmallVector<StringRef, 32> Lines;
709 Str.split(Lines, "\n");
714 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
715 if (Lines[I].startswith("Features")) {
716 Lines[I].split(CPUFeatures, " ");