Lines Matching refs:data
336 // sandbox. However, if any data related to the external object is stored
730 void* data) {
733 *reinterpret_cast<void**>(addr) = data;
797 // fields (external pointers, doubles and BigInt data) are only
881 static void Perform(T* data);
886 void CastCheck<true>::Perform(T* data) {
887 T::Cast(data);
892 void CastCheck<false>::Perform(T* data) {}
895 V8_INLINE void PerformCastCheck(T* data) {
897 !std::is_same<Data, std::remove_cv_t<T>>::value>::Perform(data);