HomeSort by relevance Sort by last modified time
    Searched refs:is_reference (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
add_rvalue_reference.hpp 16 #include <boost/type_traits/is_reference.hpp>
54 <T, (!is_void<T>::value && !is_reference<T>::value) >::type type;
is_const.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
30 # include <boost/type_traits/is_reference.hpp>
36 # include <boost/type_traits/is_reference.hpp>
93 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T const,!(::boost::is_reference<T>::value))
94 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T volatile const,!(::boost::is_reference<T>::value))
140 is_reference<T>::value
is_same.hpp 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same,
28 #include <boost/type_traits/is_reference.hpp>
85 (::boost::is_reference<T>::value == ::boost::is_reference<U>::value),
is_reference.hpp 38 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_reference,T,::boost::detail::is_reference_impl<T>::value)
add_reference.hpp 12 #include <boost/type_traits/is_reference.hpp>
47 ::boost::is_reference<T>::value
is_function.hpp 14 #include <boost/type_traits/is_reference.hpp>
58 : public is_function_chooser< ::boost::is_reference<T>::value >
intrinsics.hpp 129 # include <boost/type_traits/is_reference.hpp>
145 # define BOOST_HAS_TRIVIAL_COPY(T) (__has_trivial_copy(T) && !is_reference<T>::value && !is_volatile<T>::value)
157 # define BOOST_HAS_NOTHROW_COPY(T) (__has_nothrow_copy(T) && !is_volatile<T>::value && !is_reference<T>::value)
191 # include <boost/type_traits/is_reference.hpp>
204 # define BOOST_HAS_TRIVIAL_COPY(T) ((__has_trivial_copy(T) BOOST_INTEL_TT_OPTS) && !is_reference<T>::value && ! ::boost::is_volatile<T>::value)
208 # define BOOST_HAS_NOTHROW_COPY(T) ((__has_nothrow_copy(T) BOOST_INTEL_TT_OPTS) && !is_volatile<T>::value && !is_reference<T>::value)
229 # include <boost/type_traits/is_reference.hpp>
236 # define BOOST_HAS_TRIVIAL_COPY(T) (__has_trivial_copy(T) && !is_reference<T>::value && !is_volatile<T>::value)
240 # define BOOST_HAS_NOTHROW_COPY(T) (__has_nothrow_copy(T) && !is_volatile<T>::value && !is_reference<T>::value)
256 # include <boost/type_traits/is_reference.hpp
    [all...]
is_enum.hpp 18 #include <boost/type_traits/is_reference.hpp>
118 , ::boost::is_reference<T>::value
129 , ::boost::is_reference<T>::value
140 , ::boost::is_reference<T>::value
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
lvalue_ref.pass.cpp 19 static_assert( std::is_reference<T>::value, "");
class.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
enum.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
floating_point.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
function.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
member_function_pointer.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
member_object_pointer.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
pointer.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
rvalue_ref.pass.cpp 19 static_assert( std::is_reference<T>::value, "");
union.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
void.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
array.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
integral.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
indirect_traits.hpp 8 # include <boost/type_traits/is_reference.hpp>
99 is_reference<T>
123 is_reference<T>
177 is_reference<T>
261 : mpl::if_<is_reference<T>, is_reference_to_function_aux<T>, mpl::bool_<false> >::type
321 : is_reference_to_const_helper1<is_reference<T>::value>::template apply<T>
349 : is_reference_to_non_const_helper1<is_reference<T>::value>::template apply<T>
382 : is_reference_to_volatile_helper1<is_reference<T>::value>::template apply<T>
404 : mpl::eval_if<is_reference<T>, reference_to_pointer_impl<T>, mpl::false_>::type
411 : mpl::eval_if<is_reference<T>, is_pointer_to_function_aux<T>, mpl::false_>::typ
    [all...]
reference_content.hpp 23 # include "boost/type_traits/is_reference.hpp"
100 is_reference<T>
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 63 using google::protobuf::internal::is_reference;
308 // Verifies that is_reference is true for all reference types.
310 EXPECT_TRUE(is_reference<float&>::value);
311 EXPECT_TRUE(is_reference<const int&>::value);
312 EXPECT_TRUE(is_reference<const int*&>::value);
313 EXPECT_TRUE(is_reference<int (&)(bool)>::value);
314 EXPECT_TRUE(is_reference<RefFloat>::value);
315 EXPECT_TRUE(is_reference<const RefFloat>::value);
316 EXPECT_TRUE(is_reference<volatile RefFloat>::value);
317 EXPECT_TRUE(is_reference<const volatile RefFloat>::value)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
type_utils.hpp 58 using std::tr1::is_reference;
90 value = is_const<T>::value && is_reference<T>::value

Completed in 602 milliseconds

1 2 3 4 5