OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OSName
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Support/
Triple.cpp
320
Triple::OSType Triple::ParseOS(StringRef
OSName
) {
321
if (
OSName
.startswith("auroraux"))
323
else if (
OSName
.startswith("cygwin"))
325
else if (
OSName
.startswith("darwin"))
327
else if (
OSName
.startswith("dragonfly"))
329
else if (
OSName
.startswith("freebsd"))
331
else if (
OSName
.startswith("ios"))
333
else if (
OSName
.startswith("linux"))
335
else if (
OSName
.startswith("lv2"))
337
else if (
OSName
.startswith("macosx")
[
all
...]
/external/llvm/include/llvm/ADT/
Triple.h
128
static OSType ParseOS(StringRef
OSName
);
/external/clang/lib/Driver/
ToolChains.cpp
53
std::string
OSName
= Triple.getOSName();
54
if (!Driver::GetReleaseVersion(&
OSName
.c_str()[6],
57
getDriver().Diag(clang::diag::err_drv_invalid_darwin_version) <<
OSName
;
[
all
...]
Completed in 53 milliseconds