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

1 2

  /external/llvm/unittests/ADT/
TripleTest.cpp 406 unsigned Major, Minor, Micro;
414 T.getMacOSXVersion(Major, Minor, Micro);
415 EXPECT_EQ((unsigned)10, Major);
418 T.getiOSVersion(Major, Minor, Micro);
419 EXPECT_EQ((unsigned)5, Major);
429 T.getMacOSXVersion(Major, Minor, Micro);
430 EXPECT_EQ((unsigned)10, Major);
433 T.getiOSVersion(Major, Minor, Micro);
434 EXPECT_EQ((unsigned)5, Major);
444 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /external/tcpdump/
nfsfh.h 50 u_int32_t Major;
53 #define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
  /external/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
25 /// \brief Represents a version number in the form major[.minor[.subminor]].
27 unsigned Major;
35 : Major(0), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false) { }
37 explicit VersionTuple(unsigned Major)
38 : Major(Major), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false)
41 explicit VersionTuple(unsigned Major, unsigned Minor)
42 : Major(Major), Minor(Minor), Subminor(0), HasMinor(true),
    [all...]
  /external/chromium_org/v8/src/
code-stubs.h 127 enum Major {
142 static Major MajorKeyFromKey(uint32_t key) {
143 return static_cast<Major>(MajorKeyBits::decode(key));
149 // Gets the major key from a code object that is a code stub or binary op IC.
150 static Major GetMajorKey(Code* code_stub) {
151 return static_cast<Major>(code_stub->major_key());
154 static const char* MajorName(Major major_key, bool allow_unknown_keys);
174 virtual Major MajorKey() = 0;
233 // Computes the key based on major and minor.
499 Major MajorKey() { return ToNumber;
    [all...]
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 160 unsigned Major, Minor, Micro;
161 triple.getOSVersion(Major, Minor, Micro);
162 return Major > 10 || (Major == 10 && Minor >= 7);
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 26 Byte Major;
  /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);
375 void setTarget(DarwinPlatformKind Platform, unsigned Major, unsigned Minor,
380 TargetVersion == VersionTuple(Major, Minor, Micro))
386 TargetVersion = VersionTuple(Major, Minor, Micro);
ToolChains.cpp 59 unsigned Major, Minor, Micro;
60 if (!Triple.getMacOSXVersion(Major, Minor, Micro))
64 << Major << '.' << Minor << '.' << Micro;
73 Triple.getiOSVersion(Major, Minor, Micro);
75 << Major << '.' << Minor << '.' << Micro;
567 unsigned Major, Minor, Micro;
571 if (!Driver::GetReleaseVersion(OSXVersion->getValue(), Major, Minor,
573 Major != 10 || Minor >= 100 || Micro >= 100)
579 if (!Driver::GetReleaseVersion(Version->getValue(), Major, Minor,
581 Major >= 10 || Minor >= 100 || Micro >= 100
    [all...]
Tools.cpp     [all...]
  /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/llvm/include/llvm/MC/
MCAssembler.h 852 // A Major version of 0 indicates that no version information was supplied
856 unsigned Major;
1009 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
1012 VersionMinInfo.Major = Major;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 190 unsigned Major, Minor, Update;
191 TT.getOSVersion(Major, Minor, Update);
192 // If there is a version specified, Major will be non-zero.
193 if (Major)
196 Major, Minor, Update);
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 650 // Parse the major (and possibly minor and subminor) versions, which
664 // Parse the major version.
666 unsigned Major = 0;
668 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
683 if (Major == 0) {
688 return VersionTuple(Major);
709 // We had major.minor.
710 if (Major == 0 && Minor == 0) {
715 return VersionTuple(Major, Minor)
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.h 6 * Major code testing contribution by Xiaofan Chen
784 INT Major;
  /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...]
  /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/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 4742 milliseconds

1 2