Lines Matching refs:Label
19 class Label {
26 Label() = default;
30 Label(const Label&) = delete;
31 Label& operator=(const Label&) = delete;
37 // In debug builds, the old Label has to be cleared in order to avoid a DCHECK
40 Label(Label&& other) V8_NOEXCEPT { *this = std::move(other); }
41 Label& operator=(Label&& other) V8_NOEXCEPT {
49 Label(Label&&) V8_NOEXCEPT = default;
50 Label& operator=(Label&&) V8_NOEXCEPT = default;
55 V8_INLINE ~Label() {