HomeSort by relevance Sort by last modified time
    Searched defs:isEmptySet (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
ConstantRange.cpp 53 if (CR.isEmptySet())
122 /// isEmptySet - Return true if this set contains no members.
124 bool ConstantRange::isEmptySet() const {
146 if (isEmptySet())
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()) return CR;
348 if ( isFullSet() || CR.isEmptySet()) return *this;
349 if (CR.isFullSet() || isEmptySet()) return CR
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotView.js 643 isEmptySet: function(set)
652 return !this.isEmptySet(this.retainers);
    [all...]

Completed in 1095 milliseconds