Home
last modified time | relevance | path

Searched refs:issubset (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
D_weakrefset.py157 def issubset(self, other): member in WeakSet
158 return self.data.issubset(ref(item) for item in other)
159 __le__ = issubset
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
D_weakrefset.py172 def issubset(self, other): member in WeakSet
173 return self.data.issubset(ref(item) for item in other)
174 __lt__ = issubset
Dsets.py289 def issubset(self, other): member in BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DFd.py180 if set(compLocList).issubset(FvList):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_weakset.py145 self.assertTrue(set('a').issubset('abc'))
147 self.assertFalse(set('a').issubset('cbs'))
Dtest_set.py224 self.assertTrue(set('a').issubset('abc'))
226 self.assertFalse(set('a').issubset('cbs'))
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py1646 if not set(Value).issubset(Printset):