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

1 2

  /external/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
24 /// \brief Represents a version number in the form major[.minor[.subminor]].
26 unsigned Major;
34 : Major(0), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false) { }
36 explicit VersionTuple(unsigned Major)
37 : Major(Major), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false)
40 explicit VersionTuple(unsigned Major, unsigned Minor)
41 : 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];
276 fsidp->Fsid_dev.Major = fhp[1];
292 fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
302 fsidp->Fsid_dev.Major = fhp[2];
314 fsidp->Fsid_dev.Major = make_uint16(fhp[0], fhp[1]);
337 fsidp->Fsid_dev.Major = fhp[2];
349 fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
364 fsidp->Fsid_dev.Major = fhp[1];
386 fsidp->Fsid_dev.Major = tempa[2] + (tempa[3]<<1)
    [all...]
print-nfs.c 846 fsid.Fsid_dev.Major, fsid.Fsid_dev.Minor);
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 188 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
190 /// getOSMajorVersion - Return just the major version number, this is
202 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
207 void getiOSVersion(unsigned &Major, unsigned &Minor,
263 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
268 if (LHS[0] != Major)
269 return LHS[0] < Major;
281 unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor = 0,
287 return isOSVersionLT(Major, Minor, Micro);
290 assert(Major == 10 && "Unexpected major version")
    [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/v8/src/
code-stubs.h 113 enum Major {
124 static Major MajorKeyFromKey(uint32_t key) {
125 return static_cast<Major>(MajorKeyBits::decode(key));
131 // Gets the major key from a code object that is a code stub or binary op IC.
132 static Major GetMajorKey(Code* code_stub) {
133 return static_cast<Major>(code_stub->major_key());
136 static const char* MajorName(Major major_key, bool allow_unknown_keys);
188 virtual Major MajorKey() = 0;
218 // Computes the key based on major and minor.
296 Major MajorKey() { return StackCheck;
    [all...]
disassembler.cc 259 // Get the STUB key and extract major and minor key.
262 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
code-stubs.cc 151 const char* CodeStub::MajorName(CodeStub::Major major_key,
hydrogen-instructions.h     [all...]
  /external/llvm/lib/Support/
Triple.cpp 517 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
527 Major = Minor = Micro = 0;
530 unsigned *Components[3] = { &Major, &Minor, &Micro };
544 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
546 getOSVersion(Major, Minor, Micro);
552 if (Major == 0)
553 Major = 8;
555 if (Major < 4)
558 Minor = Major - 4;
559 Major = 10
    [all...]
  /external/llvm/unittests/ADT/
TripleTest.cpp 407 unsigned Major, Minor, Micro;
415 T.getMacOSXVersion(Major, Minor, Micro);
416 EXPECT_EQ((unsigned)10, Major);
419 T.getiOSVersion(Major, Minor, Micro);
420 EXPECT_EQ((unsigned)3, Major);
430 T.getMacOSXVersion(Major, Minor, Micro);
431 EXPECT_EQ((unsigned)10, Major);
434 T.getiOSVersion(Major, Minor, Micro);
435 EXPECT_EQ((unsigned)3, Major);
445 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 273 case BluetoothClass.Device.Major.COMPUTER:
276 case BluetoothClass.Device.Major.PHONE:
279 case BluetoothClass.Device.Major.PERIPHERAL:
282 case BluetoothClass.Device.Major.IMAGING:
  /external/v8/src/ia32/
code-stubs-ia32.h 58 Major MajorKey() { return TranscendentalCache; }
78 Major MajorKey() { return StoreBufferOverflow; }
106 Major MajorKey() { return UnaryOp; }
201 Major MajorKey() { return BinaryOp; }
323 Major MajorKey() { return StringAdd; }
345 Major MajorKey() { return SubString; }
373 virtual Major MajorKey() { return StringCompare; }
406 Major MajorKey() { return NumberToString; }
454 Major MajorKey() { return StringDictionaryLookup; }
705 Major MajorKey() { return RecordWrite;
    [all...]
  /external/v8/src/x64/
code-stubs-x64.h 57 Major MajorKey() { return TranscendentalCache; }
77 Major MajorKey() { return StoreBufferOverflow; }
112 Major MajorKey() { return UnaryOp; }
200 Major MajorKey() { return BinaryOp; }
320 Major MajorKey() { return StringAdd; }
342 Major MajorKey() { return SubString; }
371 virtual Major MajorKey() { return StringCompare; }
408 Major MajorKey() { return NumberToString; }
456 Major MajorKey() { return StringDictionaryLookup; }
687 Major MajorKey() { return RecordWrite;
    [all...]
  /external/v8/src/arm/
code-stubs-arm.h 55 Major MajorKey() { return TranscendentalCache; }
75 Major MajorKey() { return StoreBufferOverflow; }
103 Major MajorKey() { return UnaryOp; }
189 Major MajorKey() { return BinaryOp; }
329 Major MajorKey() { return StringAdd; }
352 Major MajorKey() { return SubString; }
383 virtual Major MajorKey() { return StringCompare; }
422 Major MajorKey() { return WriteInt32ToHeapNumber; }
453 Major MajorKey() { return NumberToString; }
642 Major MajorKey() { return RecordWrite;
    [all...]
  /external/v8/src/mips/
code-stubs-mips.h 56 Major MajorKey() { return TranscendentalCache; }
76 Major MajorKey() { return StoreBufferOverflow; }
104 Major MajorKey() { return UnaryOp; }
190 Major MajorKey() { return BinaryOp; }
330 Major MajorKey() { return StringAdd; }
353 Major MajorKey() { return SubString; }
383 virtual Major MajorKey() { return StringCompare; }
432 Major MajorKey() { return WriteInt32ToHeapNumber; }
464 Major MajorKey() { return NumberToString; }
643 Major MajorKey() { return RecordWrite;
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 48 /// \brief The parsed major, minor, and patch numbers.
49 int Major, Minor, Patch;
190 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
198 TargetVersion == VersionTuple(Major, Minor, Micro))
205 TargetVersion = VersionTuple(Major, Minor, Micro);
ToolChains.cpp 49 unsigned Major, Minor, Micro;
50 if (!Triple.getMacOSXVersion(Major, Minor, Micro))
54 << Major << '.' << Minor << '.' << Micro;
63 Triple.getiOSVersion(Major, Minor, Micro);
65 << Major << '.' << Minor << '.' << Micro;
494 unsigned Major, Minor, Micro;
498 if (!Driver::GetReleaseVersion(OSXVersion->getValue(), Major, Minor,
500 Major != 10 || Minor >= 100 || Micro >= 100)
506 if (!Driver::GetReleaseVersion(Version->getValue(), Major, Minor,
508 Major >= 10 || Minor >= 100 || Micro >= 100
    [all...]
Driver.cpp     [all...]
  /external/clang/include/clang/Driver/
Driver.h 385 static bool GetReleaseVersion(const char *Str, unsigned &Major,
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 166 unsigned Major, Minor, Micro;
167 triple.getOSVersion(Major, Minor, Micro);
168 return Major > 10 || (Major == 10 && Minor >= 7);
  /external/clang/lib/Parse/
ParseDecl.cpp 586 // Parse the major (and possibly minor and subminor) versions, which
600 // Parse the major version.
602 unsigned Major = 0;
604 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
618 if (Major == 0) {
623 return VersionTuple(Major);
643 // We had major.minor.
644 if (Major == 0 && Minor == 0) {
649 return VersionTuple(Major, Minor)
    [all...]
  /external/ceres-solver/docs/
changes.tex 139 \item Fix Eigen3 Row/Column Major storage issue. (Lena Gieseke)
  /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...]

Completed in 669 milliseconds

1 2