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

/external/llvm/lib/Support/
H A DConstantRange.cpp116 /// isFullSet - Return true if this set contains all of the elements possible
118 bool ConstantRange::isFullSet() const { function in class:ConstantRange
149 if (isFullSet()) {
163 if (isFullSet() || isWrappedSet())
172 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
213 return isFullSet();
225 if (isFullSet() || Other.isEmptySet()) return true;
226 if (isEmptySet() || Other.isFullSet()) return false;
268 if ( isEmptySet() || CR.isFullSet()) return *this;
269 if (CR.isEmptySet() || isFullSet()) retur
[all...]

Completed in 45 milliseconds