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;
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
LazyValueInfo.cpp 862 TrueValues.intersectWith(InBlock.getConstantRange());
    [all...]
  /external/llvm/include/llvm/ADT/
SparseBitVector.h 211 bool intersectWith(const SparseBitVectorElement &RHS,
625 changed |= Iter1->intersectWith(*Iter2, BecameZero);
  /external/llvm/lib/Support/
ConstantRange.cpp 263 /// intersectWith - Return the range that results from the intersection of this
267 /// same set size, A.intersectWith(B) might not be equal to B.intersectWith(A).
268 ConstantRange ConstantRange::intersectWith(const ConstantRange &CR) const {
277 return CR.intersectWith(*this);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp     [all...]

Completed in 628 milliseconds