Home
last modified time | relevance | path

Searched refs:getMajor (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-ifs/
H A Dllvm-ifs.cpp481 if (Stub.IfsVersion.getMajor() != IFSVersionCurrent.getMajor()) { in main()
563 if (Stub.IfsVersion.getMajor() != IFSVersionCurrent.getMajor()) { in main()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
H A DPackedVersion.h37 unsigned getMajor() const { return Version >> 16; } in getMajor() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DVersionTuple.cpp31 Out << V.getMajor(); in operator <<()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TextAPI/
H A DPackedVersion.cpp105 OS << format("%d", getMajor()); in print()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DVersionTuple.h68 unsigned getMajor() const { return Major; } in getMajor() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DCuda.cpp202 Version.getMajor() * 10 + Version.getMinor().getValueOr(0); in ToCudaVersion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DMSVC.cpp1016 llvm::sys::path::append(SDKPath, Twine(SDKVersion.getMajor())); in getWindowsSDKDirViaCommandLine()
1026 Major = SDKVersion.getMajor(); in getWindowsSDKDirViaCommandLine()
1352 MSVT = VersionTuple(MSVT.getMajor(), MSVT.getMinor().getValueOr(0), in ComputeEffectiveClangTriple()
H A DClang.cpp6063 bool IsMSVC2015Compatible = MSVT.getMajor() >= 19; in ConstructJob()
6876 << runtime.getVersion().getMajor(); in AddObjCRuntimeArgs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMachObjectWriter.cpp872 assert(V.getMajor() < 65536 && "unencodable major target version"); in writeObject()
873 return Update | (Minor << 8) | (V.getMajor() << 16); in writeObject()
H A DMCStreamer.cpp1325 LinkedTargetVersion.getMajor(), in emitVersionForTarget()
1330 LinkedTargetVersion.getMajor(), in emitVersionForTarget()
H A DMCAsmStreamer.cpp587 OS << '\t' << "sdk_version " << SDKVersion.getMajor(); in EmitSDKVersionSuffix()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DModule.cpp726 Entries.push_back(V.getMajor()); in setSDKVersion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DInitPreprocessor.cpp748 Twine(tuple.getMajor() * 10000 + minor * 100 + in InitializePredefinedMacros()
H A DCompilerInvocation.cpp3713 unsigned Major = GNUCVer.getMajor(); in ParseLangArgs()
3762 Opts.MSCompatibilityVersion = VT.getMajor() * 10000000 + in ParseLangArgs()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjC.cpp3901 Args.push_back(llvm::ConstantInt::get(CGM.Int32Ty, Version.getMajor())); in emitIsPlatformVersionAtLeast()
3938 llvm::ConstantInt::get(CGM.Int32Ty, Version.getMajor()), in EmitBuiltinAvailable()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp4226 Record.push_back(Version.getMajor()); in AddVersionTuple()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclAttr.cpp2506 auto Major = Version.getMajor(); in handleAvailabilityAttr()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp7976 Out.Major = In.getMajor(); in convertVersion()