Searched refs:isdisjoint (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_set.py | 129 actual = s1.isdisjoint(s2) 738 result = self.set.isdisjoint(self.set) 742 result = self.set.isdisjoint(empty_set) 746 result = empty_set.isdisjoint(self.set) 928 result = self.set.isdisjoint(set((2, 4))) 932 result = self.set.isdisjoint(set([2, 4, 6, 8])) 936 result = self.set.isdisjoint(set([3, 4, 5])) 940 result = self.set.isdisjoint(set([8])) 1564 … for meth in (s.union, s.intersection, s.difference, s.symmetric_difference, s.isdisjoint):
|
D | test_weakset.py | 99 self.assertTrue(self.s.isdisjoint(WeakSet(self.items2))) 100 self.assertTrue(not self.s.isdisjoint(WeakSet(self.letters)))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | _weakrefset.py | 203 def isdisjoint(self, other): member in WeakSet
|
D | _abcoll.py | 204 def isdisjoint(self, other): member in Set
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | _weakrefset.py | 215 def isdisjoint(self, other): member in WeakSet
|
D | _abcoll.py | 196 def isdisjoint(self, other): member in Set
|