HomeSort by relevance Sort by last modified time
    Searched refs:intersectWith (Results 1 - 9 of 9) sorted by null

  /frameworks/base/libs/hwui/
Rect.h 34 Rect intersectWith(float l, float t, float r, float b) const {
118 return !intersectWith(l,t,r,b).isEmpty();
126 Rect tmp(intersectWith(l,t,r,b));
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 214 TEST_F(ConstantRangeTest, IntersectWith) {
215 EXPECT_EQ(Empty.intersectWith(Full), Empty);
216 EXPECT_EQ(Empty.intersectWith(Empty), Empty);
217 EXPECT_EQ(Empty.intersectWith(One), Empty);
218 EXPECT_EQ(Empty.intersectWith(Some), Empty);
219 EXPECT_EQ(Empty.intersectWith(Wrap), Empty);
220 EXPECT_EQ(Full.intersectWith(Full), Full);
221 EXPECT_EQ(Some.intersectWith(Some), Some);
222 EXPECT_EQ(Some.intersectWith(One), One);
223 EXPECT_EQ(Full.intersectWith(One), One)
    [all...]
  /external/skia/gpu/src/
GrClip.cpp 90 static void intersectWith(SkRect* dst, const SkRect& src) {
127 intersectWith(&fList.back().fRect, e.fRect);
  /external/llvm/include/llvm/Support/
ConstantRange.h 158 /// intersectWith - Return the range that results from the intersection of
162 /// intersections with the same set size, A.intersectWith(B) might not
163 /// be equal to B.intersectWith(A).
165 ConstantRange intersectWith(const ConstantRange &CR) const;