Lines Matching defs:handle
8 #include "v8-local-handle.h" // NOLINT(build/include_directory)
40 V8_INLINE void Set(const Global<S>& handle);
42 V8_INLINE void Set(const BasicTracedReference<S>& handle);
44 V8_INLINE void Set(const Local<S> handle);
282 void ReturnValue<T>::Set(const Global<S>& handle) {
284 if (V8_UNLIKELY(handle.IsEmpty())) {
287 *value_ = handle.ptr();
293 void ReturnValue<T>::Set(const BasicTracedReference<S>& handle) {
295 if (V8_UNLIKELY(handle.IsEmpty())) {
298 *value_ = handle.ptr();
304 void ReturnValue<T>::Set(const Local<S> handle) {
307 if (V8_UNLIKELY(handle.IsEmpty())) {
310 *value_ = handle.ptr();