Lines Matching defs:handle
8 #include "v8-local-handle.h" // NOLINT(build/include_directory)
39 V8_INLINE void Set(const Global<S>& handle);
41 V8_INLINE void Set(const BasicTracedReference<S>& handle);
43 V8_INLINE void Set(const Local<S> handle);
260 void ReturnValue<T>::Set(const Global<S>& handle) {
262 if (V8_UNLIKELY(handle.IsEmpty())) {
265 *value_ = *reinterpret_cast<internal::Address*>(*handle);
271 void ReturnValue<T>::Set(const BasicTracedReference<S>& handle) {
273 if (V8_UNLIKELY(handle.IsEmpty())) {
276 *value_ = *reinterpret_cast<internal::Address*>(handle.val_);
282 void ReturnValue<T>::Set(const Local<S> handle) {
285 if (V8_UNLIKELY(handle.IsEmpty())) {
288 *value_ = *reinterpret_cast<internal::Address*>(*handle);