HomeSort by relevance Sort by last modified time
    Searched full:is_void (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_void.hpp 19 //* is a type T void - is_void<T>
21 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_void,T,__is_void(T))
23 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_void,T,false)
24 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void,true)
27 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void const,true)
28 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void volatile,true)
29 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(is_void,void const volatile,true)
is_pod.hpp 13 #include <boost/type_traits/is_void.hpp>
44 ::boost::is_void<T>::value,
68 ::boost::is_void<T>::value,
add_rvalue_reference.hpp 15 #include <boost/type_traits/is_void.hpp>
54 <T, (!is_void<T>::value && !is_reference<T>::value) >::type type;
is_class.hpp 26 # include <boost/type_traits/is_void.hpp>
103 ::boost::type_traits::ice_not< ::boost::is_void<T>::value >::value,
113 ::boost::type_traits::ice_not< ::boost::is_void<T>::value >::value
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
type_traits 98 /// is_void
100 struct is_void
264 || is_void<_Tp>::value)>
272 || is_void<_Tp>::value)>
504 : public integral_constant<bool, __is_pod(_Tp) || is_void<_Tp>::value>
616 bool = (is_void<_From>::value || is_void<_To>::value
631 { static const bool __value = (is_void<_To>::value
633 && !is_void<_From>::value)); };
651 template<typename _Tp, bool = (is_void<_Tp>::valu
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
type_traits 98 /// is_void
100 struct is_void
264 || is_void<_Tp>::value)>
272 || is_void<_Tp>::value)>
504 : public integral_constant<bool, __is_pod(_Tp) || is_void<_Tp>::value>
616 bool = (is_void<_From>::value || is_void<_To>::value
631 { static const bool __value = (is_void<_To>::value
633 && !is_void<_From>::value)); };
651 template<typename _Tp, bool = (is_void<_Tp>::valu
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
type_traits 98 /// is_void
100 struct is_void
264 || is_void<_Tp>::value)>
272 || is_void<_Tp>::value)>
504 : public integral_constant<bool, __is_pod(_Tp) || is_void<_Tp>::value>
616 bool = (is_void<_From>::value || is_void<_To>::value
631 { static const bool __value = (is_void<_To>::value
633 && !is_void<_From>::value)); };
651 template<typename _Tp, bool = (is_void<_Tp>::valu
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
type_traits 98 /// is_void
100 struct is_void
264 || is_void<_Tp>::value)>
272 || is_void<_Tp>::value)>
504 : public integral_constant<bool, __is_pod(_Tp) || is_void<_Tp>::value>
616 bool = (is_void<_From>::value || is_void<_To>::value
631 { static const bool __value = (is_void<_To>::value
633 && !is_void<_From>::value)); };
651 template<typename _Tp, bool = (is_void<_Tp>::valu
    [all...]
  /external/libchrome/base/
template_util.h 56 template <class T> struct is_void : false_type {}; struct in namespace:base
57 template <> struct is_void<void> : true_type {}; struct in namespace:base
  /external/webrtc/webrtc/base/
template_util.h 48 template <class T> struct is_void : false_type {}; struct in namespace:rtc
49 template <> struct is_void<void> : true_type {}; struct in namespace:rtc
  /external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.functions/
pointer_to.pass.cpp 33 static A pointer_to(typename std::conditional<std::is_void<element_type>::value,
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
rvalue_ref.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
array.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
class.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
enum.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
floating_point.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/pointer.traits.functions/
pointer_to.pass.cpp 33 static A pointer_to(typename std::conditional<std::is_void<element_type>::value,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
rvalue_ref.pass.cpp 19 static_assert(!std::is_void<T>::value, "");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
type_traits 161 /// is_void
163 struct is_void
447 : public __or_<is_arithmetic<_Tp>, is_void<_Tp>, __is_nullptr_t<_Tp>>::type
454 is_void<_Tp>>>::type
630 bool = __or_<is_void<_Tp>,
678 bool = __or_<is_void<_Tp>,
722 : public __and_<__not_<is_void<_Tp>>,
832 = __not_<__or_<is_void<_From>,
960 template<typename _Tp, bool = is_void<_Tp>::value>
978 template<typename _Tp, bool = is_void<_Tp>::value
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
type_traits 161 /// is_void
163 struct is_void
447 : public __or_<is_arithmetic<_Tp>, is_void<_Tp>, __is_nullptr_t<_Tp>>::type
454 is_void<_Tp>>>::type
630 bool = __or_<is_void<_Tp>,
678 bool = __or_<is_void<_Tp>,
722 : public __and_<__not_<is_void<_Tp>>,
832 = __not_<__or_<is_void<_From>,
960 template<typename _Tp, bool = is_void<_Tp>::value>
978 template<typename _Tp, bool = is_void<_Tp>::value
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
type_traits 161 /// is_void
163 struct is_void
447 : public __or_<is_arithmetic<_Tp>, is_void<_Tp>, __is_nullptr_t<_Tp>>::type
454 is_void<_Tp>>>::type
630 bool = __or_<is_void<_Tp>,
678 bool = __or_<is_void<_Tp>,
722 : public __and_<__not_<is_void<_Tp>>,
832 = __not_<__or_<is_void<_From>,
960 template<typename _Tp, bool = is_void<_Tp>::value>
978 template<typename _Tp, bool = is_void<_Tp>::value
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
type_traits 202 struct is_void :
207 struct is_void<void> :
296 || is_void<_Tp>::value)>
367 public integral_constant<bool, (is_arithmetic<_Tp>::value || is_void<_Tp>::value)>
487 public integral_constant<bool, (is_void<_Tp>::value
493 public integral_constant<bool, (is_void<_Tp>::value
499 public integral_constant<bool, (is_void<_Tp>::value
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
type_traits 202 struct is_void :
207 struct is_void<void> :
296 || is_void<_Tp>::value)>
367 public integral_constant<bool, (is_arithmetic<_Tp>::value || is_void<_Tp>::value)>
487 public integral_constant<bool, (is_void<_Tp>::value
493 public integral_constant<bool, (is_void<_Tp>::value
499 public integral_constant<bool, (is_void<_Tp>::value

Completed in 742 milliseconds

1 2 3 4