Lines Matching refs:rhs

1705 std::ostream& operator<<(std::ostream& os, ComparisonBias rhs) {  in operator <<()  argument
1707 switch (rhs) { in operator <<()
1715 LOG(FATAL) << "Unknown ComparisonBias: " << static_cast<int>(rhs); in operator <<()
1739 std::ostream& operator<<(std::ostream& os, HInstruction::InstructionKind rhs) { in operator <<() argument
1741 switch (rhs) { in operator <<()
1744 os << "Unknown instruction kind " << static_cast<int>(rhs); in operator <<()
2845 std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs) { in operator <<() argument
2848 << " is_valid=" << rhs.IsValid() in operator <<()
2849 << " type=" << (!rhs.IsValid() ? "?" : mirror::Class::PrettyClass(rhs.GetTypeHandle().Get())) in operator <<()
2850 << " is_exact=" << rhs.IsExact() in operator <<()
2937 std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs) { in operator <<() argument
2938 switch (rhs) { in operator <<()
2946 LOG(FATAL) << "Unknown ClinitCheckRequirement: " << static_cast<int>(rhs); in operator <<()
3030 HInstruction* rhs = cond->InputAt(1); in InsertOppositeCondition() local
3033 case kCondEQ: replacement = new (allocator) HEqual(lhs, rhs); break; in InsertOppositeCondition()
3034 case kCondNE: replacement = new (allocator) HNotEqual(lhs, rhs); break; in InsertOppositeCondition()
3035 case kCondLT: replacement = new (allocator) HLessThan(lhs, rhs); break; in InsertOppositeCondition()
3036 case kCondLE: replacement = new (allocator) HLessThanOrEqual(lhs, rhs); break; in InsertOppositeCondition()
3037 case kCondGT: replacement = new (allocator) HGreaterThan(lhs, rhs); break; in InsertOppositeCondition()
3038 case kCondGE: replacement = new (allocator) HGreaterThanOrEqual(lhs, rhs); break; in InsertOppositeCondition()
3039 case kCondB: replacement = new (allocator) HBelow(lhs, rhs); break; in InsertOppositeCondition()
3040 case kCondBE: replacement = new (allocator) HBelowOrEqual(lhs, rhs); break; in InsertOppositeCondition()
3041 case kCondA: replacement = new (allocator) HAbove(lhs, rhs); break; in InsertOppositeCondition()
3042 case kCondAE: replacement = new (allocator) HAboveOrEqual(lhs, rhs); break; in InsertOppositeCondition()
3064 std::ostream& operator<<(std::ostream& os, const MoveOperands& rhs) { in operator <<() argument
3066 << " source=" << rhs.GetSource() in operator <<()
3067 << " destination=" << rhs.GetDestination() in operator <<()
3068 << " type=" << rhs.GetType() in operator <<()
3070 if (rhs.GetInstruction() != nullptr) { in operator <<()
3071 os << rhs.GetInstruction()->DebugName() << ' ' << rhs.GetInstruction()->GetId(); in operator <<()
3079 std::ostream& operator<<(std::ostream& os, TypeCheckKind rhs) { in operator <<() argument
3080 switch (rhs) { in operator <<()
3098 LOG(FATAL) << "Unknown TypeCheckKind: " << static_cast<int>(rhs); in operator <<()