Home
last modified time | relevance | path

Searched refs:issuperset (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Lib/
D_weakrefset.py162 def issuperset(self, other): member in WeakSet
163 return self.data.issuperset(ref(item) for item in other)
164 __ge__ = issuperset
Dipaddress.py491 if not _BaseV4._DECIMAL_DIGITS.issuperset(prefixlen_str):
1159 if not cls._DECIMAL_DIGITS.issuperset(octet_str):
1751 if not cls._HEX_DIGITS.issuperset(hextet_str):
/external/python/cpython2/Lib/
D_weakrefset.py164 def issuperset(self, other): member in WeakSet
165 return self.data.issuperset(ref(item) for item in other)
166 __ge__ = issuperset
Dsets.py298 def issuperset(self, other): member in BaseSet
309 __ge__ = issuperset
317 return len(self) > len(other) and self.issuperset(other)
/external/autotest/scheduler/
Drdb_cache_manager.py305 if (not h_key.deps.issuperset(key.deps) or
/external/python/cpython2/Doc/library/
Dsets.rst90 | ``s.issuperset(t)`` | ``s >= t`` | test whether every element in |
206 >>> employees.issuperset(engineers) # superset test
209 >>> employees.issuperset(engineers)
Dstdtypes.rst1871 .. method:: issuperset(other)
1917 :meth:`issuperset` methods will accept any iterable as an argument. In
/external/tensorflow/tensorflow/python/util/
Ddeprecation_test.py121 actual_set.issuperset(expected_subset),
466 actual_set.issuperset(expected_subset),
749 actual_set.issuperset(expected_subset),
/external/python/pyasn1/pyasn1/type/
Dconstraint.py340 if not self._set.issuperset(value):
/external/python/cpython3/Lib/test/
Dtest_weakset.py144 self.assertTrue(set('abc').issuperset('a'))
146 self.assertFalse(set('cbs').issuperset('a'))
Dtest_set.py223 self.assertTrue(set('abc').issuperset('a'))
225 self.assertFalse(set('cbs').issuperset('a'))
Dtest_types.py1649 self.assertTrue(set(dir(wrapper)).issuperset({
/external/python/cpython2/Lib/test/
Dtest_weakset.py164 self.assertTrue(set('abc').issuperset('a'))
166 self.assertFalse(set('cbs').issuperset('a'))
Dtest_set.py225 self.assertTrue(set('abc').issuperset('a'))
227 self.assertFalse(set('cbs').issuperset('a'))
/external/libchrome/mojo/public/tools/bindings/
Dmojom_bindings_generator.py357 if (not deps_sources.issuperset(mojom_imports)):
/external/python/cpython3/Doc/whatsnew/
D2.3.rst100 There are also :meth:`issubset` and :meth:`issuperset` methods for checking
109 >>> S1.issuperset(S2)
/external/python/cpython2/Doc/whatsnew/
D2.3.rst100 There are also :meth:`issubset` and :meth:`issuperset` methods for checking
109 >>> S1.issuperset(S2)
/external/python/cpython3/Doc/library/
Dstdtypes.rst3946 .. method:: issuperset(other)
3983 :meth:`issuperset` methods will accept any iterable as an argument. In