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

/external/llvm/lib/IR/
H A DConstantRange.cpp54 if (CR.isEmptySet())
123 /// isEmptySet - Return true if this set contains no members.
125 bool ConstantRange::isEmptySet() const { function in class:ConstantRange
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()) return CR;
346 if ( isFullSet() || CR.isEmptySet()) return *this;
347 if (CR.isFullSet() || isEmptySet()) return CR;
424 if (isEmptySet()) retur
[all...]

Completed in 1629 milliseconds