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

  /external/llvm/include/llvm/Support/
ConstantRange.h 171 /// unionWith - Return the range that results from the union of this range
177 ConstantRange unionWith(const ConstantRange &CR) const;
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 279 TEST_F(ConstantRangeTest, UnionWith) {
280 EXPECT_EQ(Wrap.unionWith(One),
282 EXPECT_EQ(One.unionWith(Wrap), Wrap.unionWith(One));
283 EXPECT_EQ(Empty.unionWith(Empty), Empty);
284 EXPECT_EQ(Full.unionWith(Full), Full);
285 EXPECT_EQ(Some.unionWith(Wrap), Full);
288 EXPECT_EQ(ConstantRange(APInt(16, 14), APInt(16, 1)).unionWith(
291 EXPECT_EQ(ConstantRange(APInt(16, 6), APInt(16, 4)).unionWith(
294 EXPECT_EQ(ConstantRange(APInt(16, 1), APInt(16, 0)).unionWith(
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 338 /// unionWith - Return the range that results from the union of this range with
344 ConstantRange ConstantRange::unionWith(const ConstantRange &CR) const {
351 if (!isWrappedSet() && CR.isWrappedSet()) return CR.unionWith(*this);
403 "ConstantRange::unionWith missed a case with one range wrapped");
502 UpperDiv.trunc(DstTySize)).unionWith(Union);
508 UpperModulo.trunc(DstTySize)).unionWith(Union);
  /frameworks/base/libs/hwui/
Layer.h 89 dirtyRect.unionWith(r);
Rect.h 136 bool unionWith(const Rect& r) {
DeferredDisplayList.cpp 66 mBounds.unionWith(op->state.mBounds);
OpenGLRenderer.cpp 419 dirty.unionWith(localDirty);
466 dirty.unionWith(localDirty);
    [all...]
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 300 mDirtyRect.unionWith(r);
  /external/llvm/include/llvm/ADT/
SparseBitVector.h 184 bool unionWith(const SparseBitVectorElement &RHS) {
596 changed |= Iter1->unionWith(*Iter2);
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 265 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
860 EdgesVals = EdgesVals.unionWith(EdgeVal);
    [all...]
  /external/llvm/lib/IR/
Metadata.cpp 469 ConstantRange Union = LastRange.unionWith(NewRange);
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 1712 milliseconds