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

1 2

  /external/autotest/site_utils/deploy_autotest/
common_util.py 50 if not set(parsed_args.servers).issubset(set(VALID_TARGETS)):
  /external/selinux/policycoreutils/sepolicy/sepolicy/
booleans.py 42 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
communicate.py 50 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
network.py 32 for i in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
__init__.py 82 for i in map(lambda y: (y), filter(lambda x: set(perm).issubset(x[PERMS]) and x['boolean'], allows)):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_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
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /prebuilts/gdb/linux-x86/lib/python2.7/
_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
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_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
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_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
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 38 if not set(disk_configs).issubset(set(self.DISK_CONFIG_KEYS)):
  /external/autotest/server/site_tests/platform_ExternalUSBStress/
platform_ExternalUSBStress.py 87 if diff_list.issubset(connected):
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
intset.py 344 issubset = _make_function("issubset","bool", variable in class:IntSet
502 print(x.issubset(x))
503 print(y.issubset(x))
  /external/autotest/server/site_tests/firmware_FWupdate/
firmware_FWupdate.py 44 if not set(('new_ec', 'new_bios')).issubset(set(dict_args)):
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
set.py 239 def issubset(self, other): member in class:Set
  /external/autotest/server/site_tests/platform_ExternalUsbPeripherals/
platform_ExternalUsbPeripherals.py 170 if not self.diff_list.issubset(on_now):
  /external/autotest/client/site_tests/power_Consumption/
power_Consumption.py 521 if set(weights).issubset(set(keyvals)):
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_weakset.py 163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_weakset.py 163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakset.py 163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakset.py 163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))

Completed in 571 milliseconds

1 2