Searched refs:__cast (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | UserList.py | 17 def __lt__(self, other): return self.data < self.__cast(other) 18 def __le__(self, other): return self.data <= self.__cast(other) 19 def __eq__(self, other): return self.data == self.__cast(other) 20 def __ne__(self, other): return self.data != self.__cast(other) 21 def __gt__(self, other): return self.data > self.__cast(other) 22 def __ge__(self, other): return self.data >= self.__cast(other) 23 def __cast(self, other): member in UserList 27 return cmp(self.data, self.__cast(other))
|
/external/python/cpython2/Lib/test/ |
D | test_richcmp.py | 63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))]) 66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))]) 69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))]) 72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))]) 75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))]) 78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))]) 80 def __cast(self, other): member in Vector
|
/external/python/cpython3/Lib/test/ |
D | test_richcmp.py | 63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))]) 66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))]) 69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))]) 72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))]) 75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))]) 78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))]) 80 def __cast(self, other): member in Vector
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 1196 return self.data < self.__cast(other) 1199 return self.data <= self.__cast(other) 1202 return self.data == self.__cast(other) 1205 return self.data > self.__cast(other) 1208 return self.data >= self.__cast(other) 1210 def __cast(self, other): member in UserList
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | PR22122-libftdc.so.abi | 5143 …<function-decl name='__cast<long, std::ratio<1, 1000000000> >' mangled-name='_ZNSt6chr…
|
D | test12-pr18844.so.abi | 17690 …<function-decl name='__cast<long, std::ratio<1, 1000> >' mangled-name='_ZNSt6chrono20_…
|
D | test22-pr19097-libstdc++.so.6.0.17.so.abi | 17187 …<function-decl name='__cast<long int, std::ratio<1l> >' filepath='/tmp/legendre/spack-…
|