Lines Matching defs:negated
735 /// Whether the class is negated or not. e.g., `\d` is not negated but
737 pub negated: bool,
758 /// Whether the class is negated or not. e.g., `[[:alpha:]]` is not negated
760 pub negated: bool,
831 /// Whether this class is negated or not.
835 /// is `negated = true`. However, it also possible to write something like
837 /// `\p{scx=Katakana}` and is therefore not actually negated even though
838 /// `negated = true` here. To test whether this class is truly negated
840 pub negated: bool,
846 /// Returns true if this class has been negated.
855 } => !self.negated,
856 _ => self.negated,
907 /// Whether this class is negated or not. e.g., `[a]` is not negated but
909 pub negated: bool,
1287 /// If the given flag is in the set but is negated, then `Some(false)` is
1290 /// If the given flag is in the set and is not negated, then `Some(true)`
1295 let mut negated = false;
1299 negated = true;
1302 return Some(!negated);