Lines Matching refs:other
162 def SourceRange__contains__(self, other): argument
164 if not isinstance(other, SourceLocation):
166 if other.file is None and self.start.file is None:
168 elif (self.start.file.name != other.file.name or
169 other.file.name != self.end.file.name):
173 if self.start.line < other.line < self.end.line:
176 elif self.start.line == other.line == self.end.line:
177 if self.start.column <= other.column <= self.end.column:
179 elif self.start.line == other.line:
181 if self.start.column <= other.column:
183 elif other.line == self.end.line:
185 if other.column <= self.end.column: