Home
last modified time | relevance | path

Searched refs:isdisjoint (Results 1 – 25 of 33) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_dictviews.py143 self.assertFalse(d1.keys().isdisjoint(d1.keys()))
144 self.assertFalse(d1.keys().isdisjoint(d2.keys()))
145 self.assertFalse(d1.keys().isdisjoint(list(d2.keys())))
146 self.assertFalse(d1.keys().isdisjoint(set(d2.keys())))
147 self.assertTrue(d1.keys().isdisjoint({'x', 'y', 'z'}))
148 self.assertTrue(d1.keys().isdisjoint(['x', 'y', 'z']))
149 self.assertTrue(d1.keys().isdisjoint(set(['x', 'y', 'z'])))
150 self.assertTrue(d1.keys().isdisjoint(set(['x', 'y'])))
151 self.assertTrue(d1.keys().isdisjoint(['x', 'y']))
152 self.assertTrue(d1.keys().isdisjoint({}))
[all …]
Dtest_set.py130 actual = s1.isdisjoint(s2)
854 result = self.set.isdisjoint(self.set)
858 result = self.set.isdisjoint(empty_set)
862 result = empty_set.isdisjoint(self.set)
1094 result = self.set.isdisjoint(set((2, 4)))
1098 result = self.set.isdisjoint(set([2, 4, 6, 8]))
1102 result = self.set.isdisjoint(set([3, 4, 5]))
1106 result = self.set.isdisjoint(set([8]))
1717 … for meth in (s.union, s.intersection, s.difference, s.symmetric_difference, s.isdisjoint):
Dtest_weakset.py100 self.assertTrue(self.s.isdisjoint(WeakSet(self.items2)))
101 self.assertTrue(not self.s.isdisjoint(WeakSet(self.letters)))
/external/mesa3d/src/amd/registers/
Dmakeregheader.py140 if type_ref is not None and regtype_emit[key].isdisjoint(regmap.chips):
160 if enum_ref is not None and enum_emit[key].isdisjoint(regmap.chips):
313 if field_line.type_refs.isdisjoint(register_line.type_refs):
339 if value_line.enum_refs.isdisjoint(field_line.enum_refs):
Dregdb.py562 if chips.isdisjoint(regmap.chips):
568 if chips.isdisjoint(other.chips):
/external/icu/icu4c/source/test/depstest/
Ddepstest.py149 if files and imports.isdisjoint(dep_exports) and imports.isdisjoint(dep_system_symbols):
/external/autotest/client/site_tests/platform_CheckCriticalProcesses/
Dplatform_CheckCriticalProcesses.py61 if set(processes_names).isdisjoint(processes):
/external/skqp/tools/skqp/
Dmake_rendertests_list.py27 assert good.isdisjoint(bad)
/external/llvm-project/lldb/scripts/
Danalyze-project-deps.py195 disjoints = [x for x in islands if this_cycle.isdisjoint(x)]
196 overlaps = [x for x in islands if not this_cycle.isdisjoint(x)]
/external/python/cpython3/Lib/email/
Dheaderregistry.py78 if not parser.DOT_ATOM_ENDS.isdisjoint(lp):
93 if not parser.SPECIALS.isdisjoint(disp):
145 if disp is not None and not parser.SPECIALS.isdisjoint(disp):
/external/python/uritemplates/uritemplate/
Dorderedset.py90 return not self.isdisjoint(other)
/external/tensorflow/tensorflow/python/ops/
Dparsing_config.py648 if not dense_key_set.isdisjoint(sparse_key_set):
652 if not dense_key_set.isdisjoint(ragged_key_set):
656 if not ragged_key_set.isdisjoint(sparse_key_set):
/external/python/cpython2/Lib/test/
Dtest_set.py129 actual = s1.isdisjoint(s2)
767 result = self.set.isdisjoint(self.set)
771 result = self.set.isdisjoint(empty_set)
775 result = empty_set.isdisjoint(self.set)
998 result = self.set.isdisjoint(set((2, 4)))
1002 result = self.set.isdisjoint(set([2, 4, 6, 8]))
1006 result = self.set.isdisjoint(set([3, 4, 5]))
1010 result = self.set.isdisjoint(set([8]))
1609 … for meth in (s.union, s.intersection, s.difference, s.symmetric_difference, s.isdisjoint):
Dtest_weakset.py119 self.assertTrue(self.s.isdisjoint(WeakSet(self.items2)))
120 self.assertTrue(not self.s.isdisjoint(WeakSet(self.letters)))
/external/llvm-project/polly/test/
Dupdate_check.py362 if not kind.isdisjoint(known.check_label_include):
369 if not kind.isdisjoint(known.check_label_include):
/external/python/cpython2/Lib/
D_weakrefset.py203 def isdisjoint(self, other): member in WeakSet
D_abcoll.py204 def isdisjoint(self, other): member in Set
/external/skia/tools/skqp/
Dcut_release.py74 assert good.isdisjoint(bad)
/external/python/cpython3/Lib/
D_weakrefset.py196 def isdisjoint(self, other): member in WeakSet
D_collections_abc.py497 def isdisjoint(self, other): member in Set
/external/python/cpython3/Doc/library/
Dcollections.abc.rst66 … ``__len__`` ``__sub__``, ``__xor__``, and ``isdisjoint``
260 :meth:`isdisjoint`::
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dtest_result.py167 return not set(exclusion_list).isdisjoint(
/external/fonttools/Tests/varLib/instancer/
Dinstancer_test.py945 assert set(varfont["avar"].segments).isdisjoint(location)
1189 assert {a.axisTag for a in fvar.axes}.isdisjoint(location)
1192 assert set(instance.coordinates).isdisjoint(location)
/external/harfbuzz_ng/src/
Dgen-tag-table.py896 return next (iter (c for c in candidates if not intersection.isdisjoint (get_variant_set (c))))
/external/python/cpython2/Doc/library/
Dcollections.rst919 … :class:`Container` ``__len__`` ``__sub__``, ``__xor__``, and ``isdisjoint``
1000 :meth:`isdisjoint` ::

12