Lines Matching refs:V8_INLINE
34 V8_INLINE bool IsNothing() const { return !has_value_; }
35 V8_INLINE bool IsJust() const { return has_value_; }
40 V8_INLINE T ToChecked() const { return FromJust(); }
46 V8_INLINE void Check() const {
54 V8_WARN_UNUSED_RESULT V8_INLINE bool To(T* out) const {
63 V8_INLINE T FromJust() const& {
72 V8_INLINE T FromJust() && {
81 V8_INLINE T FromMaybe(const T& default_value) const {
85 V8_INLINE bool operator==(const Maybe& other) const {
90 V8_INLINE bool operator!=(const Maybe& other) const {
132 V8_INLINE bool IsNothing() const { return !is_valid_; }
133 V8_INLINE bool IsJust() const { return is_valid_; }
135 V8_INLINE bool operator==(const Maybe& other) const {
139 V8_INLINE bool operator!=(const Maybe& other) const {