/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/clang/bindings/python/tests/cindex/ |
test_cursor_kind.py | 21 assert CursorKind.TYPE_REF.is_reference() 36 group = [n for n in ('is_declaration', 'is_reference', 'is_expression',
|
/external/chromium_org/media/cast/net/rtp/ |
rtp_header_parser.cc | 24 is_reference(false), 87 parsed_packet->is_reference = (data[0] & kCastReferenceFrameIdBitMask); 95 if (parsed_packet->is_reference) {
|
rtp_header_parser.h | 24 bool is_reference; // Set to true if the previous frame is not available, member in struct:media::cast::RtpCastTestHeader
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
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),
|
add_reference.hpp | 12 #include <boost/type_traits/is_reference.hpp> 47 ::boost::is_reference<T>::value
|
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
|
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_member_pointer.hpp | 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same, 30 # include <boost/type_traits/is_reference.hpp> 92 ::boost::is_reference<T>::value
|
is_pointer.hpp | 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same, 33 # include <boost/type_traits/is_reference.hpp> 138 ::boost::is_reference<T>::value
|
is_volatile.hpp | 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same, 33 # include <boost/type_traits/is_reference.hpp> 128 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 >
|
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
|
is_reference.hpp | 38 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_reference,T,::boost::detail::is_reference_impl<T>::value)
|
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_member_function_pointer.hpp | 27 # include <boost/type_traits/is_reference.hpp> 88 ::boost::is_reference<T>::value
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
type_traits_unittest.cc | 288 // Verifies that is_reference is true for all reference types. 290 EXPECT_TRUE(is_reference<float&>::value); 291 EXPECT_TRUE(is_reference<const int&>::value); 292 EXPECT_TRUE(is_reference<const int*&>::value); 293 EXPECT_TRUE(is_reference<int (&)(bool)>::value); 294 EXPECT_TRUE(is_reference<RefFloat>::value); 295 EXPECT_TRUE(is_reference<const RefFloat>::value); 296 EXPECT_TRUE(is_reference<volatile RefFloat>::value); 297 EXPECT_TRUE(is_reference<const volatile RefFloat>::value); 300 // Verifies that is_reference is false for all non-reference types [all...] |
/external/chromium_org/third_party/cld/base/ |
type_traits.h | 14 // is_reference 72 // is_reference is false except for reference types. 73 template<typename T> struct is_reference : false_type {}; struct in namespace:base 74 template<typename T> struct is_reference<T&> : true_type {}; struct in namespace:base
|
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/ |
array.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, "");
|
integral.pass.cpp | 19 static_assert(!std::is_reference<T>::value, "");
|