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

1 2

  /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()
    [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/protobuf/src/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...]
  /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...]
  /frameworks/rs/cpp/util/
TypeHelpers.h 44 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::RSC::traits::__anon46666
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::__anon46667
  /system/core/libutils/include/utils/
TypeHelpers.h 46 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon2934
48 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
50 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
52 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
54 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value
61 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon2935
  /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/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 145 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1486 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1489 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/mesa3d/src/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/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/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 143 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1478 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1481 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...]
  /prebuilts/ndk/r16/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.
1625 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1628 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/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...]
  /external/clang/test/SemaCXX/
type-traits.cpp 764 void is_pointer() function
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-port.h 218 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2262 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2265 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h 216 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2226 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2229 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h 216 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2217 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2220 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest.h 226 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2309 struct is_pointer : public false_type {}; struct in namespace:std::tr1
2312 struct is_pointer<T*> : public true_type {}; struct in namespace:std::tr1
    [all...]

Completed in 524 milliseconds

1 2