Lines Matching refs:V8_INLINE
30 V8_INLINE MaybeHandle() = default;
32 V8_INLINE MaybeHandle(NullMaybeHandleType) {}
38 V8_INLINE MaybeHandle(Handle<S> handle) : location_(handle.location_) {}
44 V8_INLINE MaybeHandle(MaybeHandle<S> maybe_handle)
47 V8_INLINE MaybeHandle(T object, Isolate* isolate);
48 V8_INLINE MaybeHandle(T object, LocalHeap* local_heap);
50 V8_INLINE void Assert() const { DCHECK_NOT_NULL(location_); }
51 V8_INLINE void Check() const { CHECK_NOT_NULL(location_); }
53 V8_INLINE Handle<T> ToHandleChecked() const {
60 V8_WARN_UNUSED_RESULT V8_INLINE bool ToHandle(Handle<S>* out) const {
72 V8_INLINE Address address() const {