Searched refs:intersection (Results 1 - 25 of 262) sorted by relevance

1234567891011

/prebuilts/misc/windows/sdl2/test/
H A Dtestautomation_rect.c19 SDL_bool intersection, SDL_bool expectedIntersection,
24 SDLTest_AssertCheck(intersection == expectedIntersection,
25 "Check for correct intersection result: expected %s, got %s intersecting rect (%d,%d,%d,%d) with line (%d,%d - %d,%d)",
27 (intersection == SDL_TRUE) ? "SDL_TRUE" : "SDL_FALSE",
287 SDLTest_AssertCheck(intersected == SDL_TRUE, "Check that intersection result was SDL_TRUE");
309 SDL_bool intersection, SDL_bool expectedIntersection,
312 SDLTest_AssertCheck(intersection == expectedIntersection,
313 "Check intersection result: expected %s, got %s intersecting A (%d,%d,%d,%d) with B (%d,%d,%d,%d)",
315 (intersection == SDL_TRUE) ? "SDL_TRUE" : "SDL_FALSE",
332 SDL_bool intersection, SDL_boo
18 _validateIntersectRectAndLineResults( SDL_bool intersection, SDL_bool expectedIntersection, SDL_Rect *rect, SDL_Rect * refRect, int x1, int y1, int x2, int y2, int x1Ref, int y1Ref, int x2Ref, int y2Ref) argument
308 _validateHasIntersectionResults( SDL_bool intersection, SDL_bool expectedIntersection, SDL_Rect *rectA, SDL_Rect *rectB, SDL_Rect *refRectA, SDL_Rect *refRectB) argument
331 _validateIntersectRectResults( SDL_bool intersection, SDL_bool expectedIntersection, SDL_Rect *rectA, SDL_Rect *rectB, SDL_Rect *refRectA, SDL_Rect *refRectB, SDL_Rect *result, SDL_Rect *expectedResult) argument
424 SDL_bool intersection; local
452 SDL_bool intersection; local
481 SDL_bool intersection; local
569 SDL_bool intersection; local
616 SDL_bool intersection; local
686 SDL_bool intersection; local
717 SDL_bool intersection; local
744 SDL_bool intersection; local
771 SDL_bool intersection; local
838 SDL_bool intersection; local
884 SDL_bool intersection; local
940 SDL_bool intersection; local
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
H A Dutil.py45 any set intersection will match.
51 return bool(obj.intersection(criteria))
87 return set(criteria.expand()).intersection(obj.expand())
95 (equality or intersection) or by regex matching of the
103 any set intersection will match. Ignored
H A Ddta.py339 # 1. use set intersection to find matching exec
445 match = entry.intersection(exe)
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A D_weakrefset.py143 def intersection(self, other): member in class:WeakSet
145 __and__ = intersection
196 return len(self.intersection(other)) == 0
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
197 """Return the intersection of two sets as a new set.
203 return self.intersection(other)
205 def intersection(self, other): member in class:BaseSet
206 """Return the intersection of two sets as a new set.
423 # In-place union, intersection, differences.
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
449 self._data = (self.intersection(othe
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A D_weakrefset.py143 def intersection(self, other): member in class:WeakSet
145 __and__ = intersection
196 return len(self.intersection(other)) == 0
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
197 """Return the intersection of two sets as a new set.
203 return self.intersection(other)
205 def intersection(self, other): member in class:BaseSet
206 """Return the intersection of two sets as a new set.
423 # In-place union, intersection, differences.
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
449 self._data = (self.intersection(othe
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A D_weakrefset.py143 def intersection(self, other): member in class:WeakSet
145 __and__ = intersection
196 return len(self.intersection(other)) == 0
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
197 """Return the intersection of two sets as a new set.
203 return self.intersection(other)
205 def intersection(self, other): member in class:BaseSet
206 """Return the intersection of two sets as a new set.
423 # In-place union, intersection, differences.
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
449 self._data = (self.intersection(othe
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A D_weakrefset.py143 def intersection(self, other): member in class:WeakSet
145 __and__ = intersection
196 return len(self.intersection(other)) == 0
H A Dsets.py4 ignored. The usual operations (union, intersection, deletion, etc.)
169 # Standard set operations: union, intersection, both differences.
197 """Return the intersection of two sets as a new set.
203 return self.intersection(other)
205 def intersection(self, other): member in class:BaseSet
206 """Return the intersection of two sets as a new set.
423 # In-place union, intersection, differences.
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
449 self._data = (self.intersection(othe
[all...]
/prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-annotations/4.5/
H A Dantlr4-annotations-4.5.jar ... .util.Set nullableElements java.util.Set intersection java.util.Map namedMethodMap private boolean checkClassNameConstants () boolean ...
/prebuilts/ndk/current/sources/third_party/vulkan/src/libs/glm/detail/
H A Ddummy.cpp143 struct intersection
157 intersection const & Intersection,
141 struct intersection struct
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
H A Ddummy.cpp143 struct intersection
157 intersection const & Intersection,
141 struct intersection struct
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_set.py101 i = self.s.intersection(self.otherword)
106 self.assertRaises(PassThru, self.s.intersection, check_pass_thru())
108 self.assertEqual(self.thetype('abcba').intersection(C('cdc')), set('cc'))
109 self.assertEqual(self.thetype('abcba').intersection(C('efgfe')), set(''))
110 self.assertEqual(self.thetype('abcba').intersection(C('ccb')), set('bc'))
111 self.assertEqual(self.thetype('abcba').intersection(C('ef')), set(''))
112 self.assertEqual(self.thetype('abcba').intersection(C('cbcf'), C('bag')), set('b'))
114 z = s.intersection()
123 return not set(s1).intersection(s2)
135 i = self.s.intersection(sel
[all...]
H A Dtest_weakset.py105 i = s.intersection(self.items2)
112 self.assertEqual(i.intersection(C(self.items)), x)
123 i = self.s.intersection(self.items2)
H A Dtest_sets.py563 self.set.intersection(self.other)
565 self.assertRaises(TypeError, self.set.intersection, self.other)
803 >>> engineering_management = engineers & managers # intersection
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_set.py101 i = self.s.intersection(self.otherword)
106 self.assertRaises(PassThru, self.s.intersection, check_pass_thru())
108 self.assertEqual(self.thetype('abcba').intersection(C('cdc')), set('cc'))
109 self.assertEqual(self.thetype('abcba').intersection(C('efgfe')), set(''))
110 self.assertEqual(self.thetype('abcba').intersection(C('ccb')), set('bc'))
111 self.assertEqual(self.thetype('abcba').intersection(C('ef')), set(''))
112 self.assertEqual(self.thetype('abcba').intersection(C('cbcf'), C('bag')), set('b'))
114 z = s.intersection()
123 return not set(s1).intersection(s2)
135 i = self.s.intersection(sel
[all...]
H A Dtest_weakset.py105 i = s.intersection(self.items2)
112 self.assertEqual(i.intersection(C(self.items)), x)
123 i = self.s.intersection(self.items2)
H A Dtest_sets.py563 self.set.intersection(self.other)
565 self.assertRaises(TypeError, self.set.intersection, self.other)
803 >>> engineering_management = engineers & managers # intersection
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_set.py101 i = self.s.intersection(self.otherword)
106 self.assertRaises(PassThru, self.s.intersection, check_pass_thru())
108 self.assertEqual(self.thetype('abcba').intersection(C('cdc')), set('cc'))
109 self.assertEqual(self.thetype('abcba').intersection(C('efgfe')), set(''))
110 self.assertEqual(self.thetype('abcba').intersection(C('ccb')), set('bc'))
111 self.assertEqual(self.thetype('abcba').intersection(C('ef')), set(''))
112 self.assertEqual(self.thetype('abcba').intersection(C('cbcf'), C('bag')), set('b'))
114 z = s.intersection()
123 return not set(s1).intersection(s2)
135 i = self.s.intersection(sel
[all...]
H A Dtest_weakset.py105 i = s.intersection(self.items2)
112 self.assertEqual(i.intersection(C(self.items)), x)
123 i = self.s.intersection(self.items2)
H A Dtest_sets.py563 self.set.intersection(self.other)
565 self.assertRaises(TypeError, self.set.intersection, self.other)
803 >>> engineering_management = engineers & managers # intersection
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_set.py101 i = self.s.intersection(self.otherword)
106 self.assertRaises(PassThru, self.s.intersection, check_pass_thru())
108 self.assertEqual(self.thetype('abcba').intersection(C('cdc')), set('cc'))
109 self.assertEqual(self.thetype('abcba').intersection(C('efgfe')), set(''))
110 self.assertEqual(self.thetype('abcba').intersection(C('ccb')), set('bc'))
111 self.assertEqual(self.thetype('abcba').intersection(C('ef')), set(''))
112 self.assertEqual(self.thetype('abcba').intersection(C('cbcf'), C('bag')), set('b'))
114 z = s.intersection()
123 return not set(s1).intersection(s2)
135 i = self.s.intersection(sel
[all...]
H A Dtest_weakset.py105 i = s.intersection(self.items2)
112 self.assertEqual(i.intersection(C(self.items)), x)
123 i = self.s.intersection(self.items2)

Completed in 853 milliseconds

1234567891011