HomeSort by relevance Sort by last modified time
    Searched refs:intersects (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipRect.cpp 33 bool ClipRect::intersects(const HitTestLocation& hitTestLocation) const function in class:WebCore::ClipRect
35 return hitTestLocation.intersects(m_rect);
HitTestLocation.h 64 bool intersects(const LayoutRect&) const;
65 bool intersects(const FloatRect&) const;
66 bool intersects(const RoundedRect&) const;
HitTestLocation.cpp 124 // 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:WebCore::HitTestLocation
145 bool HitTestLocation::intersects(const FloatRect& rect) const function in class:WebCore::HitTestLocation
150 bool HitTestLocation::intersects(const RoundedRect& rect) const function in class:WebCore::HitTestLocation
162 // FIXME: Remove this once non-rect based hit-detection stops using IntRect:intersects.
ClipRect.h 75 bool intersects(const LayoutRect& rect) const { return m_rect.intersects(rect); } function in class:WebCore::ClipRect
76 bool intersects(const HitTestLocation&) const;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRedEyeRepresentation.java 51 Vector<RedEyeCandidate> intersects = new Vector<RedEyeCandidate>(); local
55 intersects.add(r);
58 for (int i = 0; i < intersects.size(); i++) {
59 RedEyeCandidate r = intersects.elementAt(i);
  /frameworks/base/libs/hwui/
Snapshot.h 52 return rect.intersects(dangerRects[0])
53 || rect.intersects(dangerRects[1])
54 || rect.intersects(dangerRects[2])
55 || rect.intersects(dangerRects[3]);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RenderedDocumentMarker.h 61 if (m_renderedRect.intersects(r))
  /external/chromium_org/third_party/skia/tests/
RegionTest.cpp 16 #define TEST_NO_INTERSECT(rgn, rect) REPORTER_ASSERT(reporter, !rgn.intersects(rect))
17 #define TEST_INTERSECT(rgn, rect) REPORTER_ASSERT(reporter, rgn.intersects(rect))
86 // test intersects
87 REPORTER_ASSERT(reporter, !empty.intersects(empty2));
88 REPORTER_ASSERT(reporter, !valid.intersects(empty));
166 REPORTER_ASSERT(reporter, rgn.intersects(r));
168 REPORTER_ASSERT(reporter, rgn.intersects(r));
175 bool c0 = a.intersects(b);
PathOpsDRectTest.cpp 59 REPORTER_ASSERT(reporter, rect.intersects(&rect2));
74 REPORTER_ASSERT(reporter, rect.intersects(&rect2));
94 REPORTER_ASSERT(reporter, rect.intersects(&rect2));
  /external/skia/tests/
RegionTest.cpp 16 #define TEST_NO_INTERSECT(rgn, rect) REPORTER_ASSERT(reporter, !rgn.intersects(rect))
17 #define TEST_INTERSECT(rgn, rect) REPORTER_ASSERT(reporter, rgn.intersects(rect))
86 // test intersects
87 REPORTER_ASSERT(reporter, !empty.intersects(empty2));
88 REPORTER_ASSERT(reporter, !valid.intersects(empty));
166 REPORTER_ASSERT(reporter, rgn.intersects(r));
168 REPORTER_ASSERT(reporter, rgn.intersects(r));
175 bool c0 = a.intersects(b);
PathOpsDRectTest.cpp 59 REPORTER_ASSERT(reporter, rect.intersects(&rect2));
74 REPORTER_ASSERT(reporter, rect.intersects(&rect2));
94 REPORTER_ASSERT(reporter, rect.intersects(&rect2));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/
RectTest.java 176 assertTrue(r1.intersects(r2));
177 assertTrue(r2.intersects(r1));
178 assertTrue(r1.intersects(r4));
179 assertFalse(r1.intersects(r3));
180 assertFalse(r1.intersects(r5));
181 assertFalse(r1.intersects(r6));
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarTheme.cpp 61 if (damageRect.intersects(backButtonStartPaintRect))
64 if (damageRect.intersects(backButtonEndPaintRect))
67 if (damageRect.intersects(forwardButtonStartPaintRect))
70 if (damageRect.intersects(forwardButtonEndPaintRect))
78 if (damageRect.intersects(trackPaintRect))
84 if (damageRect.intersects(thumbRect))
86 if (damageRect.intersects(startTrackRect))
88 if (damageRect.intersects(endTrackRect))
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsRect.h 35 bool intersects(SkDRect* r) const { function in struct:SkDRect
  /external/chromium_org/ui/views/
masked_view_targeter.cc 40 mask_region.intersects(RectToSkIRect(bounds));
  /external/icu/icu4c/source/i18n/
scriptset.h 49 UBool intersects(const ScriptSet &other) const; // Sets contain at least one script in commmon.
identifier_info.cpp 157 if (!fRequiredScripts->intersects(scriptsForCP)
179 if (fRequiredScripts->intersects(*next)) {
253 !fRequiredScripts->intersects(*CONFUSABLE_WITH_LATIN)) {
280 if (!container.intersects(*alternatives)) {
  /external/replicaisland/src/com/replica/replicaisland/
CollisionVolume.java 55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, method in class:CollisionVolume
SphereCollisionVolume.java 85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, method in class:SphereCollisionVolume
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
RectTest.java 132 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/skia/src/pathops/
SkPathOpsRect.h 35 bool intersects(SkDRect* r) const { function in struct:SkDRect
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
BitSetTest.java     [all...]
  /external/chromium_org/cc/base/
region.cc 66 bool Region::Intersects(const gfx::Rect& rect) const {
67 return skregion_.intersects(gfx::RectToSkIRect(rect));
70 bool Region::Intersects(const Region& region) const {
71 return skregion_.intersects(region.skregion_);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRect.java 93 public static boolean intersects(Rect a, Rect b) { method in class:ShadowRect
100 return intersects(realRect, r);
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.cpp 82 if (!a.intersects(b))
206 if (rect.intersects(existingRect) || sharesEdge(rect, existingRect)) {
207 // Re-invalidate in case the union intersects other paint rects.
285 } else if (m_update.scrollRect.intersects(m_update.paintRects[i])) {
311 if (!m_update.scrollRect.intersects(rect))

Completed in 389 milliseconds

1 2 3 4 5 6 7 8 9