Searched refs:OSName (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/
H A DTriple.cpp348 Triple::OSType Triple::ParseOS(StringRef OSName) { argument
349 if (OSName.startswith("auroraux"))
351 else if (OSName.startswith("cygwin"))
353 else if (OSName.startswith("darwin"))
355 else if (OSName.startswith("dragonfly"))
357 else if (OSName.startswith("freebsd"))
359 else if (OSName.startswith("ios"))
361 else if (OSName.startswith("kfreebsd"))
363 else if (OSName.startswith("linux"))
365 else if (OSName
596 StringRef OSName = getOSName(); local
[all...]
/external/llvm/lib/Support/
H A DTriple.cpp433 static Triple::OSType parseOS(StringRef OSName) { argument
434 return StringSwitch<Triple::OSType>(OSName)
951 StringRef OSName = getOSName(); local
954 if (OSName.startswith(OSTypeName))
955 OSName = OSName.substr(OSTypeName.size());
957 parseVersionFromName(OSName, Major, Minor, Micro);
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DTriple.h131 static OSType ParseOS(StringRef OSName);
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DTriple.cpp449 static Triple::OSType parseOS(StringRef OSName) { argument
450 return StringSwitch<Triple::OSType>(OSName)
976 StringRef OSName = getOSName(); local
979 if (OSName.startswith(OSTypeName))
980 OSName = OSName.substr(OSTypeName.size());
982 parseVersionFromName(OSName, Major, Minor, Micro);

Completed in 130 milliseconds