Lines Matching refs:expected_result
633 bool expected_result = false; in TestComparison() local
639 expected_result = (i == j); in TestComparison()
643 expected_result = (i != j); in TestComparison()
647 expected_result = (i < j); in TestComparison()
651 expected_result = (i <= j); in TestComparison()
655 expected_result = (i > j); in TestComparison()
659 expected_result = (i >= j); in TestComparison()
663 expected_result = (x < y); in TestComparison()
667 expected_result = (x <= y); in TestComparison()
671 expected_result = (x > y); in TestComparison()
675 expected_result = (x >= y); in TestComparison()
683 RunCode(target_config, *compiler_options_, graph, [](HGraph*) {}, true, expected_result); in TestComparison()