HomeSort by relevance Sort by last modified time
    Searched defs:Major (Results 1 - 25 of 44) sorted by null

1 2

  /external/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 27 unsigned Major;
  /external/llvm/unittests/ADT/
TripleTest.cpp 661 unsigned Major, Minor, Micro;
669 T.getMacOSXVersion(Major, Minor, Micro);
670 EXPECT_EQ((unsigned)10, Major);
673 T.getiOSVersion(Major, Minor, Micro);
674 EXPECT_EQ((unsigned)5, Major);
684 T.getMacOSXVersion(Major, Minor, Micro);
685 EXPECT_EQ((unsigned)10, Major);
688 T.getiOSVersion(Major, Minor, Micro);
689 EXPECT_EQ((unsigned)5, Major);
699 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /external/tcpdump/
nfsfh.h 48 uint32_t Major;
51 #define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 139 unsigned Major, Minor, Micro;
140 TargetTriple.getiOSVersion(Major, Minor, Micro);
141 return Major >= 8;
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 163 unsigned Major, Minor, Micro;
164 triple.getOSVersion(Major, Minor, Micro);
165 return Major > 10 || (Major == 10 && Minor >= 7);
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 77 void EmitVersionMin(MCVersionMinType Kind, unsigned Major,
264 void MCMachOStreamer::EmitVersionMin(MCVersionMinType Kind, unsigned Major,
266 getAssembler().setVersionMinInfo(Kind, Major, Minor, Update);
491 unsigned Major, Minor, Update;
492 TT.getOSVersion(Major, Minor, Update);
493 // If there is a version specified, Major will be non-zero.
494 if (Major) {
506 S->EmitVersionMin(VersionType, Major, Minor, Update);
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 26 Byte Major;
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp     [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 29 * exactly one device class. The device class is further broken down into major
136 * major and minor components.
138 * BluetoothClass.Device} represent a combination of major and minor
140 * BluetoothClass.Device.Major} represent only major device classes.
147 * Defines all major device class constants.
150 public static class Major {
166 // Devices in the COMPUTER major class
175 // Devices in the PHONE major class
183 // Minor classes for the AUDIO_VIDEO major clas
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 52 /// \brief The parsed major, minor, and patch numbers.
53 int Major, Minor, Patch;
55 /// \brief The text of the parsed major, and major+minor versions.
65 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
413 void setTarget(DarwinPlatformKind Platform, unsigned Major, unsigned Minor,
418 TargetVersion == VersionTuple(Major, Minor, Micro))
424 TargetVersion = VersionTuple(Major, Minor, Micro);
    [all...]
ToolChains.cpp 564 unsigned Major, Minor, Micro;
567 getTriple().getiOSVersion(Major, Minor, Micro);
568 llvm::raw_string_ostream(iOSTarget) << Major << '.' << Minor << '.'
571 getTriple().getWatchOSVersion(Major, Minor, Micro);
572 llvm::raw_string_ostream(WatchOSTarget) << Major << '.' << Minor << '.'
576 if (!getTriple().getMacOSXVersion(Major, Minor, Micro)) {
580 llvm::raw_string_ostream(OSXTarget) << Major << '.' << Minor << '.'
645 unsigned Major, Minor, Micro;
650 if (!Driver::GetReleaseVersion(OSXVersion->getValue(), Major, Minor, Micro,
652 HadExtra || Major != 10 || Minor >= 100 || Micro >= 100
    [all...]
Tools.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 559 // A Major version of 0 indicates that no version information was supplied
563 unsigned Major;
708 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
711 VersionMinInfo.Major = Major;
  /external/v8/src/
code-stubs.h 223 enum Major {
239 static Major MajorKeyFromKey(uint32_t key) {
240 return static_cast<Major>(MajorKeyBits::decode(key));
246 // Gets the major key from a code object that is a code stub or binary op IC.
247 static Major GetMajorKey(Code* code_stub) {
253 static const char* MajorName(Major major_key);
286 virtual Major MajorKey() const = 0;
318 // Computes the key based on major and minor.
380 inline Major MajorKey() const override { return NAME; }; \
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 196 unsigned Major, Minor, Update;
197 TT.getOSVersion(Major, Minor, Update);
198 // If there is a version specified, Major will be non-zero.
199 if (Major) {
209 OutStreamer->EmitVersionMin(VersionType, Major, Minor, Update);
    [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 363 bool ParseDirectiveMajorMinor(uint32_t &Major, uint32_t &Minor);
673 bool AMDGPUAsmParser::ParseDirectiveMajorMinor(uint32_t &Major,
676 return TokError("invalid major version");
678 Major = getLexer().getTok().getIntVal();
696 uint32_t Major;
699 if (ParseDirectiveMajorMinor(Major, Minor))
702 getTargetStreamer().EmitDirectiveHSACodeObjectVersion(Major, Minor);
708 uint32_t Major;
718 getTargetStreamer().EmitDirectiveHSACodeObjectISA(Isa.Major, Isa.Minor,
725 if (ParseDirectiveMajorMinor(Major, Minor)
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 732 // Parse the major (and possibly minor and subminor) versions, which
746 // Parse the major version.
748 unsigned Major = 0;
750 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
765 if (Major == 0) {
770 return VersionTuple(Major);
793 // We had major.minor.
794 if (Major == 0 && Minor == 0) {
799 return VersionTuple(Major, Minor, (AfterMajorSeparator == '_'))
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 437 uint32_t Major;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mce.h 162 UCHAR Major;
ntddk.h 474 USHORT Major:4;
    [all...]
wmidata.h     [all...]
  /external/clang/include/clang-c/
Index.h 29 * CINDEX_VERSION_MAJOR is intended for "major" source/ABI breaking changes.
37 #define CINDEX_VERSION_ENCODE(major, minor) ( \
38 ((major) * 10000) \
45 #define CINDEX_VERSION_STRINGIZE_(major, minor) \
46 #major"."#minor
47 #define CINDEX_VERSION_STRINGIZE(major, minor) \
48 CINDEX_VERSION_STRINGIZE_(major, minor)
147 * \brief Describes a version number of the form major.minor.subminor.
151 * \brief The major version number, e.g., the '10' in '10.7.3'. A negative
154 int Major;
    [all...]
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 

Completed in 541 milliseconds

1 2