Searched refs:union (Results 1 - 25 of 385) sorted by relevance

1234567891011>>

/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/
H A Dd3d10_1.idl105 union {
H A Dd3d11.idl305 union
310 union
319 union
324 union
932 union
1106 union
1142 union
1283 union
1569 union {
1590 union {
[all...]
H A Damvideo.idl202 union
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
H A Dd3d10_1.idl105 union {
H A Dd3d11.idl305 union
310 union
319 union
324 union
932 union
1106 union
1142 union
1283 union
1569 union {
1590 union {
[all...]
H A Damvideo.idl202 union
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A D_weakrefset.py191 def union(self, other): member in class:WeakSet
193 __or__ = union
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
171 # method version (e.g. union).
174 # we did "union = __or__" instead, then Set().union(3) would return
179 """Return the union of two sets as a new set.
185 return self.union(other)
187 def union(self, other): member in class:BaseSet
188 """Return the union of two sets as a new set.
423 # In-place union, intersectio
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
H A Dmain.py231 requested = avail_fixes.union(explicit) if all_present else explicit
233 requested = avail_fixes.union(explicit)
/prebuilts/gdb/linux-x86/lib/python2.7/
H A D_weakrefset.py191 def union(self, other): member in class:WeakSet
193 __or__ = union
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
171 # method version (e.g. union).
174 # we did "union = __or__" instead, then Set().union(3) would return
179 """Return the union of two sets as a new set.
185 return self.union(other)
187 def union(self, other): member in class:BaseSet
188 """Return the union of two sets as a new set.
423 # In-place union, intersectio
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
H A Dmain.py231 requested = avail_fixes.union(explicit) if all_present else explicit
233 requested = avail_fixes.union(explicit)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A D_weakrefset.py191 def union(self, other): member in class:WeakSet
193 __or__ = union
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
171 # method version (e.g. union).
174 # we did "union = __or__" instead, then Set().union(3) would return
179 """Return the union of two sets as a new set.
185 return self.union(other)
187 def union(self, other): member in class:BaseSet
188 """Return the union of two sets as a new set.
423 # In-place union, intersectio
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
H A Dmain.py231 requested = avail_fixes.union(explicit) if all_present else explicit
233 requested = avail_fixes.union(explicit)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A D_weakrefset.py191 def union(self, other): member in class:WeakSet
193 __or__ = union
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
171 # method version (e.g. union).
174 # we did "union = __or__" instead, then Set().union(3) would return
179 """Return the union of two sets as a new set.
185 return self.union(other)
187 def union(self, other): member in class:BaseSet
188 """Return the union of two sets as a new set.
423 # In-place union, intersectio
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
H A Dmain.py231 requested = avail_fixes.union(explicit) if all_present else explicit
233 requested = avail_fixes.union(explicit)
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_set.py71 u = self.s.union(self.otherword)
76 self.assertRaises(PassThru, self.s.union, check_pass_thru())
77 self.assertRaises(TypeError, self.s.union, [[]])
79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd'))
80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg'))
81 self.assertEqual(self.thetype('abcba').union(C('ccb')), set('abc'))
82 self.assertEqual(self.thetype('abcba').union(C('ef')), set('abcef'))
83 self.assertEqual(self.thetype('abcba').union(C('ef'), C('fg')), set('abcefg'))
87 self.assertEqual(x.union(set([1]), x, set([2])), self.thetype([1, 2]))
90 i = self.s.union(sel
[all...]
H A Dtest_weakset.py82 u = self.s.union(self.items2)
87 self.assertRaises(TypeError, self.s.union, [[]])
91 self.assertEqual(self.s.union(c), x)
99 i = self.s.union(self.items2)
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_set.py71 u = self.s.union(self.otherword)
76 self.assertRaises(PassThru, self.s.union, check_pass_thru())
77 self.assertRaises(TypeError, self.s.union, [[]])
79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd'))
80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg'))
81 self.assertEqual(self.thetype('abcba').union(C('ccb')), set('abc'))
82 self.assertEqual(self.thetype('abcba').union(C('ef')), set('abcef'))
83 self.assertEqual(self.thetype('abcba').union(C('ef'), C('fg')), set('abcefg'))
87 self.assertEqual(x.union(set([1]), x, set([2])), self.thetype([1, 2]))
90 i = self.s.union(sel
[all...]
H A Dtest_weakset.py82 u = self.s.union(self.items2)
87 self.assertRaises(TypeError, self.s.union, [[]])
91 self.assertEqual(self.s.union(c), x)
99 i = self.s.union(self.items2)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_set.py71 u = self.s.union(self.otherword)
76 self.assertRaises(PassThru, self.s.union, check_pass_thru())
77 self.assertRaises(TypeError, self.s.union, [[]])
79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd'))
80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg'))
81 self.assertEqual(self.thetype('abcba').union(C('ccb')), set('abc'))
82 self.assertEqual(self.thetype('abcba').union(C('ef')), set('abcef'))
83 self.assertEqual(self.thetype('abcba').union(C('ef'), C('fg')), set('abcefg'))
87 self.assertEqual(x.union(set([1]), x, set([2])), self.thetype([1, 2]))
90 i = self.s.union(sel
[all...]
H A Dtest_weakset.py82 u = self.s.union(self.items2)
87 self.assertRaises(TypeError, self.s.union, [[]])
91 self.assertEqual(self.s.union(c), x)
99 i = self.s.union(self.items2)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_set.py71 u = self.s.union(self.otherword)
76 self.assertRaises(PassThru, self.s.union, check_pass_thru())
77 self.assertRaises(TypeError, self.s.union, [[]])
79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd'))
80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg'))
81 self.assertEqual(self.thetype('abcba').union(C('ccb')), set('abc'))
82 self.assertEqual(self.thetype('abcba').union(C('ef')), set('abcef'))
83 self.assertEqual(self.thetype('abcba').union(C('ef'), C('fg')), set('abcefg'))
87 self.assertEqual(x.union(set([1]), x, set([2])), self.thetype([1, 2]))
90 i = self.s.union(sel
[all...]

Completed in 1803 milliseconds

1234567891011>>