Home
last modified time | relevance | path

Searched refs:OSName (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Support/
DTriple.cpp320 Triple::OSType Triple::ParseOS(StringRef OSName) { in ParseOS() argument
321 if (OSName.startswith("auroraux")) in ParseOS()
323 else if (OSName.startswith("cygwin")) in ParseOS()
325 else if (OSName.startswith("darwin")) in ParseOS()
327 else if (OSName.startswith("dragonfly")) in ParseOS()
329 else if (OSName.startswith("freebsd")) in ParseOS()
331 else if (OSName.startswith("ios")) in ParseOS()
333 else if (OSName.startswith("linux")) in ParseOS()
335 else if (OSName.startswith("lv2")) in ParseOS()
337 else if (OSName.startswith("macosx")) in ParseOS()
[all …]
/external/llvm/include/llvm/ADT/
DTriple.h128 static OSType ParseOS(StringRef OSName);
/external/clang/lib/Driver/
DToolChains.cpp53 std::string OSName = Triple.getOSName(); in Darwin() local
54 if (!Driver::GetReleaseVersion(&OSName.c_str()[6], in Darwin()
57 getDriver().Diag(clang::diag::err_drv_invalid_darwin_version) << OSName; in Darwin()