Searched refs:TestFallthrough (Results 1 – 2 of 2) sorted by relevance
86 enum class TestFallthrough { kThen, kElse, kNone }; enum389 BytecodeLabels* else_labels, TestFallthrough fallthrough);414 BytecodeLabels* else_labels, TestFallthrough fallthrough);
691 BytecodeLabels* else_labels, TestFallthrough fallthrough) in TestResultScope()726 TestFallthrough fallthrough() const { return fallthrough_; } in fallthrough()727 TestFallthrough inverted_fallthrough() const { in inverted_fallthrough()729 case TestFallthrough::kThen: in inverted_fallthrough()730 return TestFallthrough::kElse; in inverted_fallthrough()731 case TestFallthrough::kElse: in inverted_fallthrough()732 return TestFallthrough::kThen; in inverted_fallthrough()734 return TestFallthrough::kNone; in inverted_fallthrough()737 void set_fallthrough(TestFallthrough fallthrough) { in set_fallthrough()743 TestFallthrough fallthrough_;[all …]