Searched refs:issubset (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython2/Lib/ |
D | _weakrefset.py | 157 def issubset(self, other): member in WeakSet 158 return self.data.issubset(ref(item) for item in other) 159 __le__ = issubset
|
D | sets.py | 289 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/ |
D | booleans.py | 39 …for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]),…
|
D | communicate.py | 48 …for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]),…
|
D | network.py | 30 …for i in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]) …
|
D | __init__.py | 375 …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/ |
D | message_factory_test.py | 114 ).issubset(set(messages.keys()))) 120 ).issubset(
|
/external/lisa/libs/utils/analysis/ |
D | functions_analysis.py | 61 if not set(metrics).issubset(set(available_metrics)):
|
/external/autotest/client/cros/cellular/pseudomodem/ |
D | sms.py | 70 if not keyset.issubset(cls._settable_props):
|
/external/autotest/client/site_tests/platform_CryptohomeFio/ |
D | platform_CryptohomeFio.py | 44 if not set(disk_configs).issubset(set(self.DISK_CONFIG_KEYS)):
|
/external/autotest/server/site_tests/platform_ExternalUSBStress/ |
D | platform_ExternalUSBStress.py | 87 if diff_list.issubset(connected):
|
/external/autotest/server/site_tests/firmware_FWupdate/ |
D | firmware_FWupdate.py | 44 if not set(('new_ec', 'new_bios')).issubset(set(dict_args)):
|
/external/python/cpython2/Lib/test/ |
D | test_weakset.py | 163 self.assertTrue(set('a').issubset('abc')) 165 self.assertFalse(set('a').issubset('cbs'))
|
D | test_hashlib.py | 119 issubset(hashlib.algorithms_available))
|
D | test_set.py | 224 self.assertTrue(set('a').issubset('abc')) 226 self.assertFalse(set('a').issubset('cbs'))
|
/external/autotest/server/site_tests/platform_ExternalUsbPeripherals/ |
D | platform_ExternalUsbPeripherals.py | 186 if not self.diff_list.issubset(on_now):
|
/external/autotest/client/site_tests/power_Consumption/ |
D | power_Consumption.py | 534 if set(weights).issubset(set(keyvals)):
|
/external/v8/tools/ |
D | run-tests.py | 591 if not set(VARIANTS).issubset(ALL_VARIANTS):
|
/external/python/cpython2/Doc/library/ |
D | sets.rst | 87 | ``s.issubset(t)`` | ``s <= t`` | test whether every element in |
|
D | stdtypes.rst | 1857 .. method:: issubset(other) 1912 :meth:`difference`, and :meth:`symmetric_difference`, :meth:`issubset`, and
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.3.rst | 100 There are also :meth:`issubset` and :meth:`issuperset` methods for checking 105 >>> S2.issubset(S1) 107 >>> S1.issubset(S2)
|