Home
last modified time | relevance | path

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

/external/python/cpython2/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
Dsets.py289 def issubset(self, other): member in BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
/external/selinux/python/sepolicy/sepolicy/
Dbooleans.py39 …for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]),…
Dcommunicate.py48 …for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]),…
Dnetwork.py30 …for i in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]) …
D__init__.py375 …for i in map(lambda y: (y), filter(lambda x: set(perm).issubset(x[PERMS]) and x['boolean'], allows…
/external/protobuf/python/google/protobuf/internal/
Dmessage_factory_test.py114 ).issubset(set(messages.keys())))
120 ).issubset(
/external/lisa/libs/utils/analysis/
Dfunctions_analysis.py61 if not set(metrics).issubset(set(available_metrics)):
/external/autotest/client/cros/cellular/pseudomodem/
Dsms.py70 if not keyset.issubset(cls._settable_props):
/external/autotest/client/site_tests/platform_CryptohomeFio/
Dplatform_CryptohomeFio.py44 if not set(disk_configs).issubset(set(self.DISK_CONFIG_KEYS)):
/external/autotest/server/site_tests/platform_ExternalUSBStress/
Dplatform_ExternalUSBStress.py87 if diff_list.issubset(connected):
/external/autotest/server/site_tests/firmware_FWupdate/
Dfirmware_FWupdate.py44 if not set(('new_ec', 'new_bios')).issubset(set(dict_args)):
/external/python/cpython2/Lib/test/
Dtest_weakset.py163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))
Dtest_hashlib.py119 issubset(hashlib.algorithms_available))
Dtest_set.py224 self.assertTrue(set('a').issubset('abc'))
226 self.assertFalse(set('a').issubset('cbs'))
/external/autotest/server/site_tests/platform_ExternalUsbPeripherals/
Dplatform_ExternalUsbPeripherals.py186 if not self.diff_list.issubset(on_now):
/external/autotest/client/site_tests/power_Consumption/
Dpower_Consumption.py534 if set(weights).issubset(set(keyvals)):
/external/v8/tools/
Drun-tests.py591 if not set(VARIANTS).issubset(ALL_VARIANTS):
/external/python/cpython2/Doc/library/
Dsets.rst87 | ``s.issubset(t)`` | ``s <= t`` | test whether every element in |
Dstdtypes.rst1857 .. method:: issubset(other)
1912 :meth:`difference`, and :meth:`symmetric_difference`, :meth:`issubset`, and
/external/python/cpython2/Doc/whatsnew/
D2.3.rst100 There are also :meth:`issubset` and :meth:`issuperset` methods for checking
105 >>> S2.issubset(S1)
107 >>> S1.issubset(S2)