Lines Matching defs:__ref

215   static void_type & uncv_ref(void_cv_type & __ref)
216 { return __ref; }
217 static void_type const& uncv_cref(void_cv_type const& __ref)
218 { return __ref; }
225 static void_cv_type & cv_ref(void_type & __ref)
226 { return __ref; }
227 static void_cv_type const& cv_cref(void_type const& __ref)
228 { return __ref; }
242 static void_type& uncv_ref(void_cv_type &__ref)
243 { return __CONST_CAST(void_type&, __ref); }
253 static void_cv_type & cv_ref(void_type &__ref)
254 { return __CONST_CAST(void_cv_type &, __ref); }
255 static void_cv_type const& cv_cref(void_type const& __ref)
256 { return __CONST_CAST(void_cv_type const&, __ref); }
283 static value_type & to_value_type_ref(void_type &__ref)
284 { return __REINTERPRET_CAST(value_type &, cv_traits::cv_ref(__ref)); }
294 static void_type const& to_storage_type_cref(value_type const& __ref)
295 { return cv_traits::uncv_cref(__REINTERPRET_CAST(void_cv_type const&, __ref)); }
298 static void_type const& to_storage_type_crefT(value_type const& __ref)
299 { return to_storage_type_cref(__ref); }
313 static value_type & to_value_type_ref(storage_type &__ref)
314 { return __ref; }
315 static value_type const& to_value_type_cref(storage_type const&__ref)
316 { return __ref; }
324 static storage_type const& to_storage_type_cref(value_type const& __ref)
325 { return __ref; }
329 static _Tp1 const& to_storage_type_crefT(_Tp1 const& __ref)
330 { return __ref; }
415 static value_type & to_value_type_ref(storage_type &__ref)
416 { return __REINTERPRET_CAST(value_type&, __ref); }
417 static value_type const& to_value_type_cref(storage_type const&__ref)
418 { return __REINTERPRET_CAST(value_type const&, __ref); }
426 static storage_type const& to_storage_type_cref(value_type const&__ref)
427 { return __REINTERPRET_CAST(storage_type const&, __ref); }
429 static _Tp1 const& to_storage_type_crefT(_Tp1 const& __ref)
430 { return __ref; }
442 bool operator () (_StorageT const& __ref) const
443 { return _M_pred(cast_traits::to_value_type_cref(__ref)); }