Home | History | Annotate | Download | only in IR

Lines Matching refs:CR

161   bool contains(const ConstantRange &CR) const;
187 /// Compare set size of this range with the range CR.
189 bool isSizeStrictlySmallerThanOf(const ConstantRange &CR) const;
209 bool operator==(const ConstantRange &CR) const {
210 return Lower == CR.Lower && Upper == CR.Upper;
212 bool operator!=(const ConstantRange &CR) const {
213 return !operator==(CR);
221 ConstantRange difference(const ConstantRange &CR) const;
230 ConstantRange intersectWith(const ConstantRange &CR) const;
238 ConstantRange unionWith(const ConstantRange &CR) const;
349 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) {
350 CR.print(OS);