Home | History | Annotate | Download | only in Support

Lines Matching refs:Name

228 Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
229 Triple::ArchType BPFArch(parseBPFArch(Name));
230 return StringSwitch<Triple::ArchType>(Name)
889 static void parseVersionFromName(StringRef Name, unsigned &Major,
897 if (Name.empty() || Name[0] < '0' || Name[0] > '9')
901 *Components[i] = EatNumber(Name);
904 if (Name.startswith("."))
905 Name = Name.substr(1);
922 // Assume that the OS portion of the triple starts with the canonical name.
1440 llvm_unreachable("invalid arch name");