Lines Matching refs:IntCC
37 pub enum IntCC { enum
60 impl CondCode for IntCC { implementation
62 use self::IntCC::*; in complement()
78 use self::IntCC::*; in swap_args()
94 impl IntCC { implementation
96 pub fn all() -> &'static [IntCC] { in all()
98 IntCC::Equal, in all()
99 IntCC::NotEqual, in all()
100 IntCC::SignedLessThan, in all()
101 IntCC::SignedGreaterThanOrEqual, in all()
102 IntCC::SignedGreaterThan, in all()
103 IntCC::SignedLessThanOrEqual, in all()
104 IntCC::UnsignedLessThan, in all()
105 IntCC::UnsignedGreaterThanOrEqual, in all()
106 IntCC::UnsignedGreaterThan, in all()
107 IntCC::UnsignedLessThanOrEqual, in all()
114 use self::IntCC::*; in without_equal()
127 use self::IntCC::*; in unsigned()
139 use self::IntCC::*; in to_static_str()
155 impl Display for IntCC { implementation
161 impl FromStr for IntCC { implementation
165 use self::IntCC::*; in from_str()
351 for r in IntCC::all() { in int_complement()
361 for r in IntCC::all() { in int_swap_args()
370 for r in IntCC::all() { in int_display()
374 assert_eq!("bogus".parse::<IntCC>(), Err(())); in int_display()