Searched defs:isFullSet (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/IR/
H A DConstantRange.cpp117 /// isFullSet - Return true if this set contains all of the elements possible
119 bool ConstantRange::isFullSet() const { function in class:ConstantRange
147 if (isFullSet()) {
161 if (isFullSet() || isWrappedSet())
170 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
211 return isFullSet();
223 if (isFullSet() || Other.isEmptySet()) return true;
224 if (isEmptySet() || Other.isFullSet()) return false;
266 if ( isEmptySet() || CR.isFullSet()) return *this;
267 if (CR.isEmptySet() || isFullSet()) retur
[all...]

Completed in 50 milliseconds