Home
last modified time | relevance | path

Searched refs:ObjectFormat (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/llvm/lib/Support/
HDTriple.cpp558 ObjectFormat(parseFormat(getEnvironmentName())) { in Triple()
559 if (ObjectFormat == Triple::UnknownObjectFormat) in Triple()
560 ObjectFormat = getDefaultFormat(*this); in Triple()
575 Environment(), ObjectFormat(Triple::UnknownObjectFormat) { in Triple()
576 ObjectFormat = getDefaultFormat(*this); in Triple()
593 ObjectFormat(parseFormat(EnvironmentStr.str())) { in Triple()
594 if (ObjectFormat == Triple::UnknownObjectFormat) in Triple()
595 ObjectFormat = getDefaultFormat(*this); in Triple()
626 ObjectFormatType ObjectFormat = UnknownObjectFormat; in normalize() local
628 ObjectFormat = parseFormat(Components[4]); in normalize()
[all …]
/NextBSD/contrib/llvm/include/llvm/ADT/
HDTriple.h202 ObjectFormatType ObjectFormat; variable
210 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {} in Triple()
221 ObjectFormat == Other.ObjectFormat;
272 ObjectFormatType getObjectFormat() const { return ObjectFormat; } in getObjectFormat()