Lines Matching refs:other
165 def SourceRange__contains__(self, other): argument
167 if not isinstance(other, SourceLocation):
169 if other.file is None and self.start.file is None:
171 elif (self.start.file.name != other.file.name or
172 other.file.name != self.end.file.name):
176 if self.start.line < other.line < self.end.line:
179 elif self.start.line == other.line == self.end.line:
180 if self.start.column <= other.column <= self.end.column:
182 elif self.start.line == other.line:
184 if self.start.column <= other.column:
186 elif other.line == self.end.line:
188 if other.column <= self.end.column: