Home
last modified time | relevance | path

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

/third_party/python/Lib/
D_weakrefset.py160 def issubset(self, other): member in WeakSet
161 return self.data.issubset(ref(item) for item in other)
162 __le__ = issubset
/third_party/protobuf/python/google/protobuf/internal/
Dmessage_factory_test.py126 ).issubset(set(messages.keys())))
132 'google.protobuf.python.internal.another_field'],).issubset(set(
/third_party/freetype/builds/meson/
Dprocess_ftoption_h.py89 assert cmdline_options.issubset(
/third_party/skia/third_party/externals/freetype/builds/meson/
Dprocess_ftoption_h.py99 assert cmdline_options.issubset(
/third_party/python/Lib/test/
Dtest_weakset.py147 self.assertTrue(set('a').issubset('abc'))
149 self.assertFalse(set('a').issubset('cbs'))
Dtest_hashlib.py216 issubset(hashlib.algorithms_available))
Dtest_set.py223 self.assertTrue(set('a').issubset('abc'))
225 self.assertFalse(set('a').issubset('cbs'))
/third_party/mesa3d/src/panfrost/bifrost/valhall/
Dasm.py350 die_if(not slots.issubset(known_slots), f"Unknown slots in {mod}")
/third_party/mindspore/mindspore/train/
Dserialization.py139 if not strict_load and ({param.data.dtype, new_param.data.dtype}.issubset(float_type) or
140 {param.data.dtype, new_param.data.dtype}.issubset(int_type)):
/third_party/python/Doc/whatsnew/
D2.3.rst100 There are also :meth:`issubset` and :meth:`issuperset` methods for checking
105 >>> S2.issubset(S1)
107 >>> S1.issubset(S2)
/third_party/python/Doc/library/
Dstdtypes.rst4182 .. method:: issubset(other)
4228 :meth:`difference`, :meth:`symmetric_difference`, :meth:`issubset`, and