HomeSort by relevance Sort by last modified time
    Searched refs:intersection (Results 51 - 75 of 196) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
check_injected_webgl_calls_info.py 98 if not (return_type in enum_types or set(enum_types).intersection(argument_types)):
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygon.h 96 bool intersection(const VertexPair&, FloatPoint&) const;
  /external/chromium_org/third_party/WebKit/Source/web/
ValidationMessageClientImpl.cpp 137 newAnchorRect = intersection(currentView()->convertToRootView(currentView()->boundsRect()), newAnchorRect);
  /external/guava/guava/src/com/google/common/collect/
ContiguousSet.java 87 * {@link Sets#intersection} for {@link ContiguousSet} instances.
89 public abstract ContiguousSet<C> intersection(ContiguousSet<C> other); method in class:ContiguousSet
  /external/chromium/chrome/browser/instant/
instant_loader.cc     [all...]
  /external/chromium_org/chrome/browser/extensions/api/permissions/
permissions_api.cc 103 scoped_refptr<PermissionSet> intersection(
105 if (!intersection->IsEmpty()) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 85 if self._should_throw_when_run.intersection(args):
117 if self._should_throw_when_run.intersection(args):
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/
utility.js 30 * Return the intersection set of two sorted arrays.
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 102 Scalar intersection(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const;
162 /** \returns the parameter value of the intersection between \c *this and the given \a hyperplane
174 * \returns the parameter value of the intersection between \c *this and the given \a hyperplane
178 inline _Scalar ParametrizedLine<_Scalar, _AmbientDim,_Options>::intersection(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const function in class:Eigen::ParametrizedLine
183 /** \returns the point of the intersection between \c *this and the given hyperplane
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_surface.c 331 * A function to calculate the intersection of two rectangles:
335 SDL_bool SDL_IntersectRect(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *intersection)
339 /* Horizontal intersection */
346 intersection->x = Amin;
349 intersection->w = Amax - Amin > 0 ? Amax - Amin : 0;
351 /* Vertical intersection */
358 intersection->y = Amin;
361 intersection->h = Amax - Amin > 0 ? Amax - Amin : 0;
363 return (intersection->w && intersection->h)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathValidatorSpi.java 451 PKIXPolicyNode intersection = RFC3280CertPathUtilities.wrapupCertG(certPath, paramsPKIX, userInitialPolicySet, local
454 if ((explicitPolicy > 0) || (intersection != null))
456 return new PKIXCertPathValidatorResult(trust, intersection, cert.getPublicKey());
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_browser_handlers.cc 504 // If there is nothing to do for one file, the intersection of handlers
513 // For all additional files, find intersection between the accumulated and
515 FileBrowserHandlerList intersection; local
522 intersection.push_back(*itr);
525 std::swap(common_handlers, intersection);
  /external/chromium_org/extensions/common/
url_pattern_set_unittest.cc 110 URLPatternSet intersection; local
111 URLPatternSet::CreateIntersection(result, set2, &intersection);
112 EXPECT_TRUE(intersection.is_empty());
122 // Intersection with an empty set.
131 // Intersection with a real set.
  /frameworks/base/test-runner/src/android/test/
MoreAsserts.java 197 Set<Object> intersection = new HashSet<Object>(expected); local
198 intersection.retainAll(actual);
203 + "\nIntersection: " + intersection);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sets.py 4 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(other))._dat
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sets.py 4 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(other))._dat
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 172 public Set intersection(AttributeScope other) { method in class:AttributeScope
  /external/chromium_org/chrome/browser/devtools/
devtools_file_system_indexer.cc 201 set<FileId> intersection; local
206 std::inserter(intersection, intersection.begin()));
207 file_ids.swap(intersection);
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerTest.java 170 assertTrue(Sets.intersection(map.keySet(), removalNotifications.keySet()).isEmpty());
MultisetsTest.java 158 ASSERT.that(Multisets.intersection(ms1, ms2)).hasContentsInOrder();
164 ASSERT.that(Multisets.intersection(ms1, ms2)).hasContentsInOrder();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 112 Rectangle h = hole.intersection(r);
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.cpp 74 // Subtracts out the intersection of |a| and |b| from |a|, assuming |b| fully
91 // complete intersection in the y-direction
97 // complete intersection in the x-direction
156 return intersection(scrollRect, damagedRect);
300 result = intersection(m_update.scrollRect, result);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 87 extensions_to_move = current_extensions.intersection(
90 if extensions_to_move.intersection(
  /external/chromium_org/ui/gfx/
render_text_win.cc 688 // Add a Range for each run/selection intersection.
692 Range intersection = run->range.Intersect(layout_range); local
693 if (intersection.IsValid()) {
694 DCHECK(!intersection.is_reversed());
695 Range range_x(GetGlyphXBoundary(run, intersection.start(), false),
696 GetGlyphXBoundary(run, intersection.end(), false));
858 const Range intersection = local
860 const Range colored_glyphs = CharRangeToGlyphRange(*run, intersection);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_set.py 101 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(self.otherword
    [all...]

Completed in 1459 milliseconds

1 23 4 5 6 7 8