Lines Matching refs:Positive
26 Positive,
72 discriminant.sign = Sign::Positive;
76 Sign::Positive => {
121 Sign::Positive => Sign::Negative,
122 Sign::Negative => Sign::Positive,
155 sign: Sign::Positive,
162 sign: Sign::Positive,
172 Sign::Positive
196 Sign::Positive => match self.magnitude.checked_add(1) {
198 sign: Sign::Positive,
233 Sign::Positive
247 use self::Sign::{Negative, Positive};
250 (Negative, Positive) => Ordering::Less, // negative < positive
251 (Positive, Negative) => Ordering::Greater, // positive > negative
252 (Positive, Positive) => self.magnitude.cmp(&other.magnitude),