Lines Matching refs:our_rhs
1340 const UndefinedRule *our_rhs = dynamic_cast<const UndefinedRule *>(&rhs); in operator ==() local
1341 return (our_rhs != NULL); in operator ==()
1357 const SameValueRule *our_rhs = dynamic_cast<const SameValueRule *>(&rhs); in operator ==() local
1358 return (our_rhs != NULL); in operator ==()
1376 const OffsetRule *our_rhs = dynamic_cast<const OffsetRule *>(&rhs); in operator ==() local
1377 return (our_rhs && in operator ==()
1378 base_register_ == our_rhs->base_register_ && in operator ==()
1379 offset_ == our_rhs->offset_); in operator ==()
1405 const ValOffsetRule *our_rhs = dynamic_cast<const ValOffsetRule *>(&rhs); in operator ==() local
1406 return (our_rhs && in operator ==()
1407 base_register_ == our_rhs->base_register_ && in operator ==()
1408 offset_ == our_rhs->offset_); in operator ==()
1430 const RegisterRule *our_rhs = dynamic_cast<const RegisterRule *>(&rhs); in operator ==() local
1431 return (our_rhs && register_number_ == our_rhs->register_number_); in operator ==()
1450 const ExpressionRule *our_rhs = dynamic_cast<const ExpressionRule *>(&rhs); in operator ==() local
1451 return (our_rhs && expression_ == our_rhs->expression_); in operator ==()
1470 const ValExpressionRule *our_rhs = in operator ==() local
1472 return (our_rhs && expression_ == our_rhs->expression_); in operator ==()