reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
31 bool empty() const { return Version == 0; } 34 unsigned getMajor() const { return Version >> 16; } 37 unsigned getMinor() const { return (Version >> 8) & 0xff; } 40 unsigned getSubminor() const { return Version & 0xff; } 45 bool operator<(const PackedVersion &O) const { return Version < O.Version; } 45 bool operator<(const PackedVersion &O) const { return Version < O.Version; } 47 bool operator==(const PackedVersion &O) const { return Version == O.Version; } 47 bool operator==(const PackedVersion &O) const { return Version == O.Version; } 49 bool operator!=(const PackedVersion &O) const { return Version != O.Version; } 49 bool operator!=(const PackedVersion &O) const { return Version != O.Version; } 51 uint32_t rawValue() const { return Version; }lib/TextAPI/MachO/PackedVersion.cpp
24 Version = 0; 42 Version = Num << 16; 51 Version |= (Num << ShiftNum); 59 Version = 0; 81 Version = Num << 16; 95 Version |= (Num << ShiftNum);