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

1 2 3

  /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/tcpdump/
nfsfh.h 50 u_int32_t Major;
53 #define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
parsenfsfh.c 160 /* probably rules out HP-UX, AIX unless they allow major=0 */
264 fsidp->Fsid_dev.Major = fhp[6];
275 fsidp->Fsid_dev.Major = fhp[1];
290 fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
299 fsidp->Fsid_dev.Major = fhp[2];
310 fsidp->Fsid_dev.Major = make_uint16(fhp[0], fhp[1]);
332 fsidp->Fsid_dev.Major = fhp[2];
343 fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
357 fsidp->Fsid_dev.Major = fhp[1];
379 fsidp->Fsid_dev.Major = tempa[2] + (tempa[3]<<1)
    [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/ADT/
Triple.h 220 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
222 /// getOSMajorVersion - Return just the major version number, this is
234 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
239 void getiOSVersion(unsigned &Major, unsigned &Minor,
295 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
300 if (LHS[0] != Major)
301 return LHS[0] < Major;
313 unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor = 0,
319 return isOSVersionLT(Major, Minor, Micro);
322 assert(Major == 10 && "Unexpected major version")
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
InputDeviceCriteria.java 38 return majorDeviceClass == BluetoothClass.Device.Major.PERIPHERAL;
  /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...]
codegen.cc 215 CodeStub::Major major_key = info->code_stub()->MajorKey();
  /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/lzma/CPP/7zip/Archive/7z/
7zHeader.h 26 Byte Major;
  /external/chromium_org/v8/src/arm/
code-stubs-arm.h 30 Major MajorKey() { return StoreBufferOverflow; }
71 Major MajorKey() { return SubString; }
102 virtual Major MajorKey() { return StringCompare; }
142 Major MajorKey() { return WriteInt32ToHeapNumber; }
307 Major MajorKey() { return RecordWrite; }
349 Major MajorKey() { return DirectCEntry; }
395 Major MajorKey() { return NameDictionaryLookup; }
  /external/chromium_org/v8/src/mips/
code-stubs-mips.h 31 Major MajorKey() { return StoreBufferOverflow; }
72 Major MajorKey() { return SubString; }
85 Major MajorKey() { return StoreRegistersState; }
99 Major MajorKey() { return RestoreRegistersState; }
129 virtual Major MajorKey() { return StringCompare; }
179 Major MajorKey() { return WriteInt32ToHeapNumber; }
349 Major MajorKey() { return RecordWrite; }
391 Major MajorKey() { return DirectCEntry; }
437 Major MajorKey() { return NameDictionaryLookup; }
  /external/llvm/lib/Support/
Triple.cpp 635 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
645 Major = Minor = Micro = 0;
648 unsigned *Components[3] = { &Major, &Minor, &Micro };
662 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
664 getOSVersion(Major, Minor, Micro);
670 if (Major == 0)
671 Major = 8;
673 if (Major < 4)
676 Minor = Major - 4;
677 Major = 10
    [all...]
  /external/chromium_org/v8/src/arm64/
code-stubs-arm64.h 30 Major MajorKey() { return StoreBufferOverflow; }
65 Major MajorKey() { return StoreRegistersState; }
80 Major MajorKey() { return RestoreRegistersState; }
306 Major MajorKey() { return RecordWrite; }
357 Major MajorKey() { return DirectCEntry; }
403 Major MajorKey() { return NameDictionaryLookup; }
420 Major MajorKey() { return SubString; }
450 virtual Major MajorKey() { return StringCompare; }