Lines Matching refs:patch
87 self.patch = int(split[2])
89 self.patch = None
94 assert self.patch is None or self.patch < 4096
99 if self.patch is not None:
100 ver_list.append(str(self.patch))
104 patch = self.patch if self.patch is not None else 0
105 ver_list = [str(self.major), str(self.minor), str(patch)]
110 patch = self.patch if self.patch is not None else 0
111 return (self.major << 22) | (self.minor << 12) | patch
114 # If only one of them has a patch version, "ignore" it by making
115 # other's patch version match self.
116 if (self.patch is None) != (other.patch is None):
118 other.patch = self.patch