Lines Matching refs:other
167 def SourceRange__contains__(self, other): argument
169 if not isinstance(other, SourceLocation):
171 if other.file is None and self.start.file is None:
173 elif (self.start.file.name != other.file.name or
174 other.file.name != self.end.file.name):
178 if self.start.line < other.line < self.end.line:
181 elif self.start.line == other.line == self.end.line:
182 if self.start.column <= other.column <= self.end.column:
184 elif self.start.line == other.line:
186 if self.start.column <= other.column:
188 elif other.line == self.end.line:
190 if other.column <= self.end.column: