HomeSort by relevance Sort by last modified time
    Searched defs:is_pointer (Results 1 - 25 of 30) sorted by null

1 2

  /external/libchrome/base/
template_util.h 28 template <class T> struct is_pointer : false_type {}; struct in namespace:base
29 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:base
  /external/mesa3d/src/mapi/glapi/gen/
typeexpr.py 265 def is_pointer(self): member in class:type_expression
gl_XML.py 479 return self.is_pointer()
482 def is_pointer(self): member in class:gl_parameter
483 return self.type_expr.is_pointer()
  /external/protobuf/src/google/protobuf/stubs/
type_traits.h 40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /external/webrtc/webrtc/base/
template_util.h 34 template <class T> struct is_pointer : false_type {}; struct in namespace:rtc
35 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:rtc
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
type_traits.h 40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
type_traits.h 40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
type_traits.h 40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
type_traits.hpp 140 enum { is_pointer = type_traits_detail::PointerTraits<typename type_traits_detail::ReferenceTraits<unqualified_type>::type>::value }; enumerator in enum:cv::cudev::TypeTraits::__anon20990
  /frameworks/rs/server/
TypeHelpers.h 44 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon28967
46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
48 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
52 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value
59 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon28968
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 41 // is_pointer
91 template <class T> struct is_pointer;
163 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
166 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
167 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
168 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
169 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
170 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /system/core/include/utils/
TypeHelpers.h 44 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon74305
46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
48 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
52 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value
59 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon74306
  /frameworks/rs/cpp/util/
TypeHelpers.h 44 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::RSC::traits::__anon28880
46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
48 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
52 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value
59 is_pointer = false, enumerator in enum:android::RSC::aggregate_traits::__anon28881
  /ndk/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 34 #include <boost/type_traits/is_pointer.hpp>
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon35746
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon35760
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 34 #include <boost/type_traits/is_pointer.hpp>
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon72371
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon72385
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /external/clang/test/SemaTemplate/
temp_class_spec.cpp 3 struct is_pointer { struct
8 struct is_pointer<T*> { struct
13 struct is_pointer<const T*> { struct
17 int array0[is_pointer<int>::value? -1 : 1];
18 int array1[is_pointer<int*>::value? 1 : -1];
19 int array2[is_pointer<const int*>::value? 1 : -1];
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h 144 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1529 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1532 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 152 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1621 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1624 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 144 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1483 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1486 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1473 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1476 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 131 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1247 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1250 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h 152 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1896 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1899 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 152 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1621 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1624 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 764 void is_pointer() function
    [all...]

Completed in 1976 milliseconds

1 2