Searched defs:intersects (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DClipRect.cpp33 bool ClipRect::intersects(const HitTestLocation& hitTestLocation) const function in class:blink::ClipRect
35 return hitTestLocation.intersects(m_rect);
H A DHitTestLocation.cpp124 // First check if rect even intersects our bounding box.
125 if (!rect.intersects(m_boundingBox))
140 bool HitTestLocation::intersects(const LayoutRect& rect) const function in class:blink::HitTestLocation
145 bool HitTestLocation::intersects(const FloatRect& rect) const function in class:blink::HitTestLocation
150 bool HitTestLocation::intersects(const RoundedRect& rect) const function in class:blink::HitTestLocation
167 // FIXME: Remove this once non-rect based hit-detection stops using IntRect:intersects.
H A DClipRect.h69 bool intersects(const LayoutRect& rect) const { return m_rect.intersects(rect); } function in class:blink::ClipRect
70 bool intersects(const HitTestLocation&) const;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsRect.h35 bool intersects(SkDRect* r) const { function in struct:SkDRect
/external/skia/src/pathops/
H A DSkPathOpsRect.h35 bool intersects(SkDRect* r) const { function in struct:SkDRect
/external/chromium_org/cc/output/
H A Doverlay_strategy_single_on_top.cc40 bool intersects = false; local
49 intersects = true;
53 if (intersects)
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutRect.cpp47 bool LayoutRect::intersects(const LayoutRect& other) const function in class:blink::LayoutRect
H A DIntRect.cpp49 bool IntRect::intersects(const IntRect& other) const function in class:blink::IntRect
H A DRegion.cpp104 bool Region::intersects(const Region& region) const function in class:blink::Region
106 if (!m_bounds.intersects(region.m_bounds))
577 if (!m_bounds.intersects(region.m_bounds)) {
616 if (!m_bounds.intersects(region.m_bounds))
H A DFloatRect.cpp65 bool FloatRect::intersects(const FloatRect& other) const function in class:blink::FloatRect
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, method in class:CollisionVolume
H A DAABoxCollisionVolume.java73 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, method in class:AABoxCollisionVolume
H A DSphereCollisionVolume.java85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, method in class:SphereCollisionVolume
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp143 bool ConstValueRangeAccess::intersects (const ConstValueRangeAccess& other) const function in class:rsg::ConstValueRangeAccess
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRect.java93 public static boolean intersects(Rect a, Rect b) { method in class:ShadowRect
100 return intersects(realRect, r);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DRectTest.java132 assertThat(Rect.intersects(a, b), is(false));
136 public void intersects() { method in class:RectTest
139 assertThat(Rect.intersects(a, b), is(true));
146 assertThat(Rect.intersects(a, b), is(false));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentMarker.h61 bool intersects(const MarkerTypes& types) const { return (m_mask & types.m_mask); } function in class:blink::DocumentMarker::MarkerTypes
/external/chromium_org/third_party/icu/source/i18n/
H A Dscriptset.cpp128 UBool ScriptSet::intersects(const ScriptSet &other) const { function in class:ScriptSet
/external/chromium_org/ui/gfx/geometry/
H A Drect_unittest.cc57 bool intersects; member in struct:gfx::__anon16845
73 EXPECT_EQ(tests[i].intersects, r1.Intersects(r2));
74 EXPECT_EQ(tests[i].intersects, r2.Intersects(r1));
/external/deqp/framework/common/
H A DtcuInterval.hpp119 bool intersects (const Interval& other) const function in class:tcu::Interval
/external/icu/icu4c/source/i18n/
H A Dscriptset.cpp128 UBool ScriptSet::intersects(const ScriptSet &other) const { function in class:ScriptSet
/external/chromium_org/cc/resources/
H A Dpicture_layer_tiling_unittest.cc1404 bool intersects = rect.Intersects(geometry_rect); local
1405 bool expected_exists = intersect_exists ? intersects : !intersects;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DDataTypes.h370 bool intersects(_Rect& r) const { function in struct:_Rect
/external/chromium_org/third_party/skia/tests/
H A DWritePixelsTest.cpp473 bool intersects = SkIRect::Intersects(canvasRect, writeRect) ; local
474 REPORTER_ASSERT(reporter, intersects == (idBefore != idAfter));
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_util.js216 * @return {boolean} True if this rectangle intersects with the |rect|.
218 Rect.prototype.intersects = function(rect) {

Completed in 4826 milliseconds

12