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

12

/external/skia/src/pathops/
H A DSkPathOpsRect.h27 bool intersects(const SkDRect& r) const { function in struct:SkDRect
H A DSkPathOpsTSect.h268 int intersects(SkTSpan<TCurve, OppCurve>* span, SkTSect<OppCurve, TCurve>* opp,
507 if (!fBounds.intersects(opp->fBounds)) {
1193 int SkTSect<TCurve, OppCurve>::intersects(SkTSpan<TCurve, OppCurve>* span, function in class:SkTSect
1244 // find the point where the tangent line intersects the opposite curve
1612 /* Each span has a range of opposite spans it intersects. After the span is split in two,
1622 int oppSects, sects = this->intersects(span, opp, test, &oppSects);
1913 int oppSect, sect = sect1->intersects(span1, sect2, span2, &oppSect);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DLineRegion.java54 public boolean intersects(LineRegion lineRegion) { method in class:LineRegion
55 return intersects(lineRegion.getMinVal(), lineRegion.getMaxVal());
59 * Tests whether this segment intersects another
64 public boolean intersects(Number line2Min, Number line2Max) { method in class:LineRegion
/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/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DRectRegion.java73 public boolean intersects(RectRegion region) { method in class:RectRegion
74 return intersects(region.getMinX(), region.getMaxX(), region.getMinY(), region.getMaxY());
79 * Tests whether this region intersects the region defined by params. Use
89 public boolean intersects(Number minX, Number maxX, Number minY, Number maxY) { method in class:RectRegion
90 return xLineRegion.intersects(minX, maxX) && yLineRegion.intersects(minY, maxY);
93 public boolean intersects(RectF region, Number visMinX, Number visMaxX, Number visMinY, Number visMaxY) { method in class:RectRegion
97 return RectF.intersects(thisRegion, region);
134 if(r.intersects(minX, maxX, minY, maxY)) {
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp143 bool ConstValueRangeAccess::intersects (const ConstValueRangeAccess& other) const function in class:rsg::ConstValueRangeAccess
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DRay.java88 * <code>intersect</code> determines if the Ray intersects a triangle.
96 * <code>intersect</code> determines if the Ray intersects a triangle
111 * <code>intersectWhere</code> determines if the Ray intersects a triangle. It then
124 * <code>intersectWhere</code> determines if the Ray intersects a triangle
141 return intersects(v0, v1, v2, loc, false, false);
145 * <code>intersectWherePlanar</code> determines if the Ray intersects a
162 * <code>intersectWherePlanar</code> determines if the Ray intersects a
181 return intersects(v0, v1, v2, loc, true, false);
185 * <code>intersects</code> does the actual intersection work.
198 * @return true if ray intersects triangl
200 private boolean intersects(Vector3f v0, Vector3f v1, Vector3f v2, method in class:Ray
271 public float intersects(Vector3f v0, Vector3f v1, Vector3f v2) { method in class:Ray
[all...]
/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/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.cpp127 UBool ScriptSet::intersects(const ScriptSet &other) const { function in class:ScriptSet
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java662 * @see com.jme.bounding.BoundingVolume#intersects(com.jme.bounding.BoundingVolume)
664 public boolean intersects(BoundingVolume bv) { method in class:BoundingSphere
717 * @see com.jme.bounding.BoundingVolume#intersects(com.jme.math.Ray)
719 public boolean intersects(Ray ray) { method in class:BoundingSphere
826 public boolean intersects(Vector3f point) { method in class:BoundingSphere
H A DBoundingVolume.java245 * @return true if this volume intersects the given volume.
247 public abstract boolean intersects(BoundingVolume bv); method in class:BoundingVolume
250 * determines if a ray intersects this bounding volume.
256 public abstract boolean intersects(Ray ray); method in class:BoundingVolume
265 * @return true if this volume intersects the given bounding sphere.
275 * @return true if this volume intersects the given bounding box.
285 * @return true if this volume intersects the given bounding box.
292 * return false. Use intersects(Vector3f) to check for edge intersection.
301 * Determines if a given point intersects (touches or is inside) this bounding volume.
305 public abstract boolean intersects(Vector3 method in class:BoundingVolume
[all...]
H A DBoundingBox.java574 * intersects determines if this Bounding Box intersects with another given
577 * @see BoundingVolume#intersects(com.jme3.bounding.BoundingVolume)
579 public boolean intersects(BoundingVolume bv) { method in class:BoundingBox
584 * determines if this bounding box intersects a given bounding sphere.
604 * determines if this bounding box intersects a given bounding box. If the
628 * determines if this bounding box intersects with a given oriented bounding
637 * determines if this bounding box intersects with a given ray object. If an
640 * @see BoundingVolume#intersects(com.jme3.math.Ray)
642 public boolean intersects(Ra method in class:BoundingBox
781 public boolean intersects(Vector3f v1, Vector3f v2, Vector3f v3) { method in class:BoundingBox
793 public boolean intersects(Vector3f point) { method in class:BoundingBox
[all...]
/external/skia/tests/
H A DWritePixelsTest.cpp472 bool intersects = SkIRect::Intersects(canvasRect, writeRect) ; local
473 REPORTER_ASSERT(reporter, intersects == (idBefore != idAfter));
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSpatial.java1412 * @param intersects
1415 public void setLastFrustumIntersection(Camera.FrustumIntersect intersects) { argument
1416 frustrumIntersects = intersects;
/external/skia/src/core/
H A DSkRegion.cpp449 bool SkRegion::intersects(const SkIRect& r) const { function in class:SkRegion
478 bool SkRegion::intersects(const SkRegion& rgn) const { function in class:SkRegion
494 return rgn.intersects(this->getBounds());
497 return this->intersects(rgn.getBounds());
1420 // runs[0..1] intersects the span
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-common-private.hh142 inline bool intersects (const hb_set_t *glyphs) const { function in struct:OT::RangeRecord
143 return glyphs->intersects (start, end);
752 range.intersects (glyphs))
845 inline bool intersects (const hb_set_t *glyphs) const { function in struct:OT::Coverage
1034 if (rangeRecord[i].value == klass && rangeRecord[i].intersects (glyphs))
H A Dhb-ot-layout-gsubgpos-private.hh632 intersects_func_t intersects; member in struct:OT::ContextClosureFuncs
656 return (data+coverage).intersects (glyphs);
1085 lookup_context.funcs.intersects, lookup_context.intersects_data))
1340 if (!(this+coverage).intersects (c->glyphs))
1435 if (!(this+coverageZ[0]).intersects (c->glyphs))
1591 lookup_context.funcs.intersects, lookup_context.intersects_data[0])
1594 lookup_context.funcs.intersects, lookup_context.intersects_data[1])
1597 lookup_context.funcs.intersects, lookup_context.intersects_data[2]))
1899 if (!(this+coverage).intersects (c->glyphs))
2025 if (!(this+input[0]).intersects (
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp619 const bool intersects = bp->IntersectsRange(addr, size, &intersect_addr, &intersect_size, &opcode_offset); local
620 assert(intersects);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 958 milliseconds

12