OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unionwith
(Results
1 - 11
of
11
) sorted by null
/external/llvm/unittests/Support/
ConstantRangeTest.cpp
280
TEST_F(ConstantRangeTest,
UnionWith
) {
281
EXPECT_EQ(Wrap.
unionWith
(One),
283
EXPECT_EQ(One.
unionWith
(Wrap), Wrap.
unionWith
(One));
284
EXPECT_EQ(Empty.
unionWith
(Empty), Empty);
285
EXPECT_EQ(Full.
unionWith
(Full), Full);
286
EXPECT_EQ(Some.
unionWith
(Wrap), Full);
289
EXPECT_EQ(ConstantRange(APInt(16, 14), APInt(16, 1)).
unionWith
(
292
EXPECT_EQ(ConstantRange(APInt(16, 6), APInt(16, 4)).
unionWith
(
295
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);
/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;
/frameworks/base/libs/hwui/
Layer.h
77
dirtyRect.
unionWith
(r);
Rect.h
136
bool
unionWith
(const Rect& r) {
Snapshot.cpp
147
clipped = clipRect->
unionWith
(r);
OpenGLRenderer.cpp
361
dirty.
unionWith
(localDirty);
409
dirty.
unionWith
(localDirty);
[
all
...]
/frameworks/base/libs/hwui/font/
CacheTexture.cpp
176
mDirtyRect.
unionWith
(r);
/external/llvm/include/llvm/ADT/
SparseBitVector.h
184
bool
unionWith
(const SparseBitVectorElement &RHS) {
580
changed |= Iter1->
unionWith
(*Iter2);
/external/llvm/lib/Analysis/
LazyValueInfo.cpp
265
ConstantRange NewR = Range.
unionWith
(RHS.getConstantRange());
856
EdgesVals = EdgesVals.
unionWith
(EdgeVal);
[
all
...]
/external/llvm/lib/VMCore/
Metadata.cpp
468
ConstantRange Union = LastRange.
unionWith
(NewRange);
Completed in 179 milliseconds