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

1 2

  /external/skia/src/gpu/
GrReducedClip.cpp 60 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
68 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
84 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
90 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
106 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
114 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
130 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
136 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
153 } else if (!SkRect::Intersects(element->getBounds(), queryBounds)) {
159 } else if (!SkRect::Intersects(element->getBounds(), queryBounds))
    [all...]
GrAAHairLinePathRenderer.cpp 269 if (SkIRect::Intersects(devClipBounds, ibounds)) {
296 if (SkIRect::Intersects(devClipBounds, ibounds)) {
317 if (SkIRect::Intersects(devClipBounds, ibounds)) {
345 if (SkIRect::Intersects(devClipBounds, ibounds)) {
373 if (SkIRect::Intersects(devClipBounds, ibounds)) {
    [all...]
  /art/compiler/dex/quick/
local_optimizations.cc 25 #define LOAD_STORE_CHECK_REG_DEP(mask, check) (mask.Intersects(*check->u.m.def_mask))
28 #define CHECK_REG_DEP(use, def, check) (def.Intersects(*check->u.m.use_mask)) || \
29 (use.Union(def).Intersects(*check->u.m.def_mask))
182 if (!this_mem_mask.Intersects(kEncodeLiteral.Union(kEncodeDalvikReg)) &&
183 (!this_mem_mask.Intersects(kEncodeLiteral.Union(kEncodeHeapRef)))) {
188 if (this_lir->u.m.def_mask->Intersects(*this_lir->u.m.use_mask)) {
197 if (uses_pc.Intersects(this_lir->u.m.use_mask->Union(*this_lir->u.m.def_mask))) {
204 if (!this_mem_mask.Intersects(kEncodeMem) && !this_mem_mask.Intersects(kEncodeLiteral)) {
215 if (uses_pc.Intersects(check_lir->u.m.use_mask->Union(*check_lir->u.m.def_mask)))
    [all...]
resource_mask.h 113 constexpr bool Intersects(const ResourceMask& other) const {
  /external/skia/tests/
PathOpsBoundsTest.cpp 38 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2);
46 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2);
RTreeTest.cpp 32 if (SkRect::Intersects(query, rects[i])) {
ReadPixelsTest.cpp 360 bool expectSuccess = SkIRect::Intersects(srcRect, DEV_RECT);
  /external/skia/src/core/
SkBitmap_scroll.cpp 49 if (!SkIRect::Intersects(r, inval->getBounds())) {
SkRasterClip.h 65 return !SkIRect::Intersects(this->getBounds(), rect);
SkRTree.cpp 165 if (fCount > 0 && SkRect::Intersects(fRoot.fBounds, query)) {
172 if (SkRect::Intersects(node->fChildren[i].fBounds, query)) {
SkClipStack.cpp 194 if (!SkRect::Intersects(this->getRect(), newR)) {
628 if (SkRect::Intersects(element->getBounds(), rect)) {
703 if (!SkRect::Intersects(prior->getBounds(), element.getBounds())) {
SkScan_Path.cpp 526 if (!skipRejectTest && !SkIRect::Intersects(*fClipRect, ir)) { // completely clipped out
690 if (ir.isEmpty() || !SkIRect::Intersects(ir, clip.getBounds())) {
SkScan_Hairline.cpp 98 if (!SkIRect::Intersects(ptsR, clipR)) {
  /external/skia/src/pathops/
SkPathOpsBounds.h 15 static bool Intersects(const SkPathOpsBounds& a, const SkPathOpsBounds& b) {
SkOpBuilder.cpp 60 if (SkRect::Intersects(fPathRefs[inner].getBounds(), testBounds)) {
SkAddIntersections.cpp 264 if (!SkPathOpsBounds::Intersects(test->bounds(), next->bounds())) {
279 if (!SkPathOpsBounds::Intersects(wt.bounds(), wn.bounds())) {
  /system/extras/perfprofd/quipper/
address_mapper.h 88 // Determines if this range intersects another range in real space.
89 inline bool Intersects(const MappedRange& range) const {
address_mapper.cc 53 if (!iter->Intersects(range))
  /external/skia/include/core/
SkRegion.h 148 bool intersects(const SkIRect&) const;
154 bool intersects(const SkRegion&) const;
212 !SkIRect::Intersects(fBounds, rect);
222 !SkIRect::Intersects(fBounds, rgn.fBounds);
SkRect.h 279 /** If r intersects this rectangle, return true and set this rectangle to that
325 /** If the rectangle specified by left,top,right,bottom intersects this rectangle,
345 static bool Intersects(const SkIRect& a, const SkIRect& b) {
675 /** If this rectangle intersects r, return true and set this rectangle to that
681 /** If this rectangle intersects the rectangle specified by left, top, right, bottom,
698 static bool Intersects(SkScalar al, SkScalar at, SkScalar ar, SkScalar ab,
712 bool intersects(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) const {
713 return Intersects(fLeft, fTop, fRight, fBottom, left, top, right, bottom);
716 bool intersects(const SkRect& r) const {
717 return Intersects(fLeft, fTop, fRight, fBottom
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Spatial.java 138 protected transient Camera.FrustumIntersect frustrumIntersects = Camera.FrustumIntersect.Intersects;
253 setLastFrustumIntersection(Camera.FrustumIntersect.Intersects);
259 : Camera.FrustumIntersect.Intersects);
261 if (frustrumIntersects == Camera.FrustumIntersect.Intersects) {
    [all...]
  /external/skia/bench/
GeometryBench.cpp 106 count += SkRect::Intersects(fRects[0], fRects[i]);
  /external/skia/src/utils/
SkCullPoints.cpp 158 bool sects = SkRect::Intersects(target, bounds);
  /art/compiler/dex/quick/arm/
target_arm.cc 229 if ((opcode == kThumbPush) && (use_mask->Intersects(r8Mask))) {
232 } else if ((opcode == kThumbPop) && (def_mask->Intersects(r8Mask))) {
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 89 Intersects;
    [all...]

Completed in 5158 milliseconds

1 2