HomeSort by relevance Sort by last modified time
    Searched refs:is_non_const_reference (Results 1 - 7 of 7) sorted by null

  /external/libweave/third_party/chromium/base/
template_util.h 15 template <class T> struct is_non_const_reference : std::false_type {}; struct in namespace:base
16 template <class T> struct is_non_const_reference<T&> : std::true_type {}; struct in namespace:base
17 template <class T> struct is_non_const_reference<const T&> : std::false_type {}; struct in namespace:base
template_util_unittest.cc 41 // is_non_const_reference<Type>
42 static_assert(!is_non_const_reference<int>::value, "IsNonConstReference");
43 static_assert(!is_non_const_reference<const int&>::value,
45 static_assert(is_non_const_reference<int&>::value, "IsNonConstReference");
bind_internal.h 78 : std::conditional<is_non_const_reference<T>::value,
  /external/libchrome/base/
template_util.h 49 template <class T> struct is_non_const_reference : false_type {}; struct in namespace:base
50 template <class T> struct is_non_const_reference<T&> : true_type {}; struct in namespace:base
51 template <class T> struct is_non_const_reference<const T&> : false_type {}; struct in namespace:base
template_util_unittest.cc 33 // is_non_const_reference<Type>
34 static_assert(!is_non_const_reference<int>::value, "IsNonConstReference");
35 static_assert(!is_non_const_reference<const int&>::value,
37 static_assert(is_non_const_reference<int&>::value, "IsNonConstReference");
bind_internal.h 78 : std::conditional<is_non_const_reference<T>::value,
  /external/webrtc/webrtc/base/
template_util.h 44 template <class T> struct is_non_const_reference : false_type {}; struct in namespace:rtc
45 template <class T> struct is_non_const_reference<T&> : true_type {}; struct in namespace:rtc
46 template <class T> struct is_non_const_reference<const T&> : false_type {}; struct in namespace:rtc

Completed in 590 milliseconds