OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isWrappedSet
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Support/
ConstantRange.cpp
129
///
isWrappedSet
- Return true if this set wraps around the top of the range,
132
bool ConstantRange::
isWrappedSet
() const {
164
if (isFullSet() ||
isWrappedSet
())
173
if (isFullSet() || (
isWrappedSet
() && getUpper() != 0))
183
if (!
isWrappedSet
()) {
198
if (!
isWrappedSet
()) {
216
if (!
isWrappedSet
())
229
if (!
isWrappedSet
()) {
230
if (Other.
isWrappedSet
())
236
if (!Other.
isWrappedSet
())
[
all
...]
/external/llvm/include/llvm/Support/
ConstantRange.h
98
///
isWrappedSet
- Return true if this set wraps around the top of the range,
101
bool
isWrappedSet
() const;
/external/llvm/unittests/Support/
ConstantRangeTest.cpp
37
EXPECT_FALSE(Full.
isWrappedSet
());
47
EXPECT_FALSE(Empty.
isWrappedSet
());
56
EXPECT_FALSE(One.
isWrappedSet
());
66
EXPECT_FALSE(Some.
isWrappedSet
());
75
EXPECT_TRUE(Wrap.
isWrappedSet
());
/external/llvm/lib/Analysis/
ValueTracking.cpp
205
if (Range.
isWrappedSet
())
[
all
...]
Completed in 658 milliseconds