Searched refs:TestFallthrough (Results 1 – 2 of 2) sorted by relevance
69 enum class TestFallthrough { kThen, kElse, kNone }; enum248 BytecodeLabels* else_labels, TestFallthrough fallthrough);260 BytecodeLabels* else_labels, TestFallthrough fallthrough);
634 BytecodeLabels* else_labels, TestFallthrough fallthrough) in TestResultScope()668 TestFallthrough fallthrough() const { return fallthrough_; } in fallthrough()669 TestFallthrough inverted_fallthrough() const { in inverted_fallthrough()671 case TestFallthrough::kThen: in inverted_fallthrough()672 return TestFallthrough::kElse; in inverted_fallthrough()673 case TestFallthrough::kElse: in inverted_fallthrough()674 return TestFallthrough::kThen; in inverted_fallthrough()676 return TestFallthrough::kNone; in inverted_fallthrough()679 void set_fallthrough(TestFallthrough fallthrough) { in set_fallthrough()685 TestFallthrough fallthrough_;[all …]