HomeSort by: relevance | last modified time | path
    Searched refs:GCCVersion (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.h 161 struct GCCVersion {
174 static GCCVersion Parse(StringRef VersionText);
177 bool operator<(const GCCVersion &RHS) const {
180 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
181 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
182 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
206 GCCVersion Version;
246 const GCCVersion &getVersion() const { return Version; }
Hexagon.h 63 GCCVersion GCCLibAndIncVersion;
BareMetal.cpp 236 Generic_GCC::GCCVersion Version = {"", -1, -1, -1, "", "", ""};
243 auto CandidateVersion = Generic_GCC::GCCVersion::Parse(VersionText);
RISCVToolchain.cpp 111 const GCCVersion &Version = GCCInstallation.getVersion();
Gnu.cpp 1787 /// Less-than for GCCVersion, implementing a Strict Weak Ordering.
1788 bool Generic_GCC::GCCVersion::isOlderThan(int RHSMajor, int RHSMinor,
1821 /// Parse a GCCVersion object out of a string of text.
1823 /// This is the primary means of forming GCCVersion objects.
1825 Generic_GCC::GCCVersion Generic_GCC::GCCVersion::Parse(StringRef VersionText) {
1826 const GCCVersion BadVersion = {VersionText.str(), -1, -1, -1, "", "", ""};
1830 GCCVersion GoodVersion = {VersionText.str(), -1, -1, -1, "", "", ""};
1958 const GCCVersion VersionZero = GCCVersion::Parse("0.0.0")
    [all...]
MinGW.cpp 330 auto Version = toolchains::Generic_GCC::GCCVersion::Parse("0.0.0");
336 toolchains::Generic_GCC::GCCVersion::Parse(VersionText);
Myriad.cpp 258 const GCCVersion &Version = GCCInstallation.getVersion();
Solaris.cpp 283 const GCCVersion &Version = GCCInstallation.getVersion();
Linux.cpp 617 const GCCVersion &Version = GCCInstallation.getVersion();

Completed in 26 milliseconds