Lines Matching defs:major
81 // major version for releases >= 5 in anticipation of the JDK doing the
82 // same thing. For example, we represent "1.5.0" as major version 5 (we
83 // drop the leading 1 and use 5 as the 'major').
93 // that we're less than major version 6.
108 static void fully_initialize(uint8_t major, uint8_t minor = 0,
123 JDK_Version(uint8_t major, uint8_t minor = 0, uint8_t micro = 0,
127 _major(major), _minor(minor), _micro(micro), _update(update),
141 static JDK_Version jdk_update(uint8_t major, uint8_t update_number) {
142 return JDK_Version(major, 0, 0, update_number);
167 * Performs comparison using only the major version, returning negative
168 * if the major version of 'this' is less than the parameter, 0 if it is
200 // Convenience methods for queries on the current major/minor version