HomeSort by relevance Sort by last modified time
    Searched refs:issubset (Results 1 - 25 of 45) sorted by null

1 2

  /external/selinux/python/sepolicy/sepolicy/
booleans.py 38 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
communicate.py 47 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
network.py 29 for i in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]) and (not check_bools or x["enabled"]), allows)):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_weakrefset.py 157 def issubset(self, other): member in class:WeakSet
158 return self.data.issubset(ref(item) for item in other)
159 __le__ = issubset
  /external/python/cpython2/Lib/
_weakrefset.py 157 def issubset(self, other): member in class:WeakSet
158 return self.data.issubset(ref(item) for item in other)
159 __le__ = issubset
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /external/python/cpython3/Lib/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_weakrefset.py 172 def issubset(self, other): member in class:WeakSet
173 return self.data.issubset(ref(item) for item in other)
174 __lt__ = issubset
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /external/autotest/client/cros/cellular/pseudomodem/
sms.py 70 if not keyset.issubset(cls._settable_props):
  /external/autotest/client/site_tests/platform_CryptohomeFio/
platform_CryptohomeFio.py 44 if not set(disk_configs).issubset(set(self.DISK_CONFIG_KEYS)):
  /external/minijail/tools/
generate_seccomp_policy.py 80 if write_and_exec.issubset(set(p.strip() for p in
  /external/protobuf/python/google/protobuf/internal/
message_factory_test.py 114 ).issubset(set(messages.keys())))
120 ).issubset(
  /external/autotest/server/site_tests/platform_ExternalUSBStress/
platform_ExternalUSBStress.py 87 if diff_list.issubset(connected):
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Fd.py 180 if set(compLocList).issubset(FvList):
  /external/autotest/server/site_tests/firmware_FWupdate/
firmware_FWupdate.py 44 if not set(('new_ec', 'new_bios')).issubset(set(dict_args)):
  /external/python/setuptools/setuptools/tests/
test_wheel.py 136 assert install_tree.issubset(exp), (install_tree - exp)
  /external/tensorflow/tensorflow/python/keras/utils/
tf_utils.py 138 if targets and targets.issubset(reachable):
  /external/tensorflow/tensorflow/python/layers/
utils.py 284 if targets and targets.issubset(reachable):
  /external/adhd/scripts/
ini_editor.py 536 not set(self.args.board).issubset(set(all_boards)))):
  /external/autotest/client/common_lib/cros/manual/
cfm_helper.py 212 if not set(puts).issubset(set(usb_device_list.keys())):
  /external/autotest/client/site_tests/power_Consumption/
power_Consumption.py 532 if set(weights).issubset(set(keyvals)):
  /external/autotest/server/site_tests/platform_ExternalUsbPeripherals/
platform_ExternalUsbPeripherals.py 198 if not self.diff_list.issubset(on_now):
  /external/python/cpython2/Lib/test/
test_hashlib.py 119 issubset(hashlib.algorithms_available))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_weakset.py 145 self.assertTrue(set('a').issubset('abc'))
147 self.assertFalse(set('a').issubset('cbs'))

Completed in 764 milliseconds

1 2