HomeSort by relevance Sort by last modified time
    Searched defs:Minor (Results 1 - 15 of 15) sorted by null

  /external/llvm/unittests/ADT/
TripleTest.cpp 406 unsigned Major, Minor, Micro;
414 T.getMacOSXVersion(Major, Minor, Micro);
416 EXPECT_EQ((unsigned)5, Minor);
418 T.getiOSVersion(Major, Minor, Micro);
420 EXPECT_EQ((unsigned)0, Minor);
429 T.getMacOSXVersion(Major, Minor, Micro);
431 EXPECT_EQ((unsigned)5, Minor);
433 T.getiOSVersion(Major, Minor, Micro);
435 EXPECT_EQ((unsigned)0, Minor);
444 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /external/clang/lib/Basic/
VersionTuple.cpp 11 // the form major[.minor[.subminor]].
31 if (Optional<unsigned> Minor = V.getMinor())
32 Out << '.' << *Minor;
58 unsigned major = 0, minor = 0, micro = 0; local
68 // If we're not done, parse the minor version, \.[0-9]+
71 if (parseInt(input, minor)) return true;
74 *this = VersionTuple(major, minor);
86 *this = VersionTuple(major, minor, micro);
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 16 * \class Minor
18 * \brief Expression of a minor
20 * \param MatrixType the type of the object in which we are taking a minor
22 * This class represents an expression of a minor. It is the return
23 * type of MatrixBase::minor() and most of the time this is the only way it
26 * \sa MatrixBase::minor()
31 struct traits<Minor<MatrixType> >
47 CoeffReadCost = _MatrixTypeNested::CoeffReadCost // minor is used typically on tiny matrices,
53 template<typename MatrixType> class Minor
54 : public MatrixBase<Minor<MatrixType>
101 MatrixBase<Derived>::minor(Index row, Index col) function in class:Eigen::MatrixBase
110 MatrixBase<Derived>::minor(Index row, Index col) const function in class:Eigen::MatrixBase
    [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 27 Byte Minor;
  /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;
68 DarwinVersion[0] = Minor + 4;
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,
    [all...]
Tools.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp     [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 127 void EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor,
371 unsigned Minor, unsigned Update) {
376 OS << " " << Major << ", " << Minor;
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 857 unsigned Minor;
1009 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
1013 VersionMinInfo.Minor = Minor;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 190 unsigned Major, Minor, Update;
191 TT.getOSVersion(Major, Minor, Update);
196 Major, Minor, Update);
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 650 // Parse the major (and possibly minor and subminor) versions, which
698 // Parse the minor version.
700 unsigned Minor = 0;
702 Minor = Minor * 10 + ThisTokBegin[AfterMinor] - '0';
709 // We had major.minor.
710 if (Major == 0 && Minor == 0) {
715 return VersionTuple(Major, Minor);
741 return VersionTuple(Major, Minor, Subminor);
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.h 785 INT Minor;
  /external/clang/include/clang-c/
Index.h 37 #define CINDEX_VERSION_ENCODE(major, minor) ( \
39 + ((minor) * 1))
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.
156 * \brief The minor version number, e.g., the '7' in '10.7.3'. This value
157 * will be negative if no minor version number was provided, e.g., for
160 int Minor;
    [all...]

Completed in 340 milliseconds