HomeSort by relevance Sort by last modified time
    Searched refs:TestFallthrough (Results 1 - 2 of 2) sorted by null

  /external/v8/src/interpreter/
bytecode-generator.h 69 enum class TestFallthrough { kThen, kElse, kNone };
248 BytecodeLabels* else_labels, TestFallthrough fallthrough);
260 BytecodeLabels* else_labels, TestFallthrough fallthrough);
bytecode-generator.cc 634 BytecodeLabels* else_labels, TestFallthrough fallthrough)
668 TestFallthrough fallthrough() const { return fallthrough_; }
669 TestFallthrough inverted_fallthrough() const {
671 case TestFallthrough::kThen:
672 return TestFallthrough::kElse;
673 case TestFallthrough::kElse:
674 return TestFallthrough::kThen;
676 return TestFallthrough::kNone;
679 void set_fallthrough(TestFallthrough fallthrough) {
685 TestFallthrough fallthrough_
    [all...]

Completed in 63 milliseconds