Home
last modified time | relevance | path

Searched refs:TestFallthrough (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-generator.h69 enum class TestFallthrough { kThen, kElse, kNone }; enum
248 BytecodeLabels* else_labels, TestFallthrough fallthrough);
260 BytecodeLabels* else_labels, TestFallthrough fallthrough);
Dbytecode-generator.cc634 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 …]