Lines Matching refs:our_rhs
909 const UndefinedRule *our_rhs = dynamic_cast<const UndefinedRule *>(&rhs); in operator ==() local
910 return (our_rhs != NULL); in operator ==()
926 const SameValueRule *our_rhs = dynamic_cast<const SameValueRule *>(&rhs); in operator ==() local
927 return (our_rhs != NULL); in operator ==()
945 const OffsetRule *our_rhs = dynamic_cast<const OffsetRule *>(&rhs); in operator ==() local
946 return (our_rhs && in operator ==()
947 base_register_ == our_rhs->base_register_ && in operator ==()
948 offset_ == our_rhs->offset_); in operator ==()
974 const ValOffsetRule *our_rhs = dynamic_cast<const ValOffsetRule *>(&rhs); in operator ==() local
975 return (our_rhs && in operator ==()
976 base_register_ == our_rhs->base_register_ && in operator ==()
977 offset_ == our_rhs->offset_); in operator ==()
999 const RegisterRule *our_rhs = dynamic_cast<const RegisterRule *>(&rhs); in operator ==() local
1000 return (our_rhs && register_number_ == our_rhs->register_number_); in operator ==()
1019 const ExpressionRule *our_rhs = dynamic_cast<const ExpressionRule *>(&rhs); in operator ==() local
1020 return (our_rhs && expression_ == our_rhs->expression_); in operator ==()
1039 const ValExpressionRule *our_rhs = in operator ==() local
1041 return (our_rhs && expression_ == our_rhs->expression_); in operator ==()