Lines Matching refs:V8_INLINE
31 V8_INLINE bool IsNothing() const { return !has_value_; }
32 V8_INLINE bool IsJust() const { return has_value_; }
37 V8_INLINE T ToChecked() const { return FromJust(); }
43 V8_INLINE void Check() const {
51 V8_WARN_UNUSED_RESULT V8_INLINE bool To(T* out) const {
60 V8_INLINE T FromJust() const {
69 V8_INLINE T FromMaybe(const T& default_value) const {
73 V8_INLINE bool operator==(const Maybe& other) const {
78 V8_INLINE bool operator!=(const Maybe& other) const {
109 V8_INLINE bool IsNothing() const { return !is_valid_; }
110 V8_INLINE bool IsJust() const { return is_valid_; }
112 V8_INLINE bool operator==(const Maybe& other) const {
116 V8_INLINE bool operator!=(const Maybe& other) const {