Lines Matching refs:expected_result
640 bool expected_result = false; in TestComparison() local
646 expected_result = (i == j); in TestComparison()
650 expected_result = (i != j); in TestComparison()
654 expected_result = (i < j); in TestComparison()
658 expected_result = (i <= j); in TestComparison()
662 expected_result = (i > j); in TestComparison()
666 expected_result = (i >= j); in TestComparison()
670 expected_result = (x < y); in TestComparison()
674 expected_result = (x <= y); in TestComparison()
678 expected_result = (x > y); in TestComparison()
682 expected_result = (x >= y); in TestComparison()
689 RunCode(target_config, graph, [](HGraph*) {}, true, expected_result); in TestComparison()