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

1 2 3 4 5 6

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 10 template<typename T> struct is_class { struct
16 int array0[is_class<X>::value? 1 : -1];
17 int array1[is_class<int>::value? -1 : 1];
18 int array2[is_class<char[3]>::value? -1 : 1];
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
AccessSourcer.java 24 * Given an integer access field and a type ({@link #IS_CLASS}, {@link #IS_FIELD} or
32 public static int IS_CLASS = 1;
37 ACC_PUBLIC(Opcodes.ACC_PUBLIC , IS_CLASS | IS_FIELD | IS_METHOD),
38 ACC_PRIVATE(Opcodes.ACC_PRIVATE , IS_CLASS | IS_FIELD | IS_METHOD),
39 ACC_PROTECTED(Opcodes.ACC_PROTECTED , IS_CLASS | IS_FIELD | IS_METHOD),
41 ACC_FINAL(Opcodes.ACC_FINAL , IS_CLASS | IS_FIELD | IS_METHOD),
42 ACC_SUPER(Opcodes.ACC_SUPER , IS_CLASS),
49 ACC_INTERFACE(Opcodes.ACC_INTERFACE , IS_CLASS),
50 ACC_ABSTRACT(Opcodes.ACC_ABSTRACT , IS_CLASS | IS_METHOD),
52 ACC_SYNTHETIC(Opcodes.ACC_SYNTHETIC , IS_CLASS | IS_FIELD | IS_METHOD)
    [all...]
  /external/chromium_org/base/
template_util_unittest.cc 70 // is_class<Type>
71 COMPILE_ASSERT(is_class<AStruct>::value, IsClass);
72 COMPILE_ASSERT(is_class<AClass>::value, IsClass);
73 COMPILE_ASSERT(!is_class<AnEnum>::value, IsClass);
74 COMPILE_ASSERT(!is_class<int>::value, IsClass);
75 COMPILE_ASSERT(!is_class<char*>::value, IsClass);
76 COMPILE_ASSERT(!is_class<int&>::value, IsClass);
77 COMPILE_ASSERT(!is_class<char[3]>::value, IsClass);
template_util.h 90 // is_class type_trait implementation.
114 struct is_class struct in namespace:base
  /external/clang/test/Lexer/
has_feature_type_traits.cpp 53 #if __has_feature(is_class)
54 int is_class();
56 // CHECK: int is_class();
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
is_sequence.hpp 35 # include <boost/type_traits/is_class.hpp>
69 boost::is_class<T>
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
AccessSourcerTest.java 48 mSourcer.write(Opcodes.ACC_ABSTRACT | Opcodes.ACC_PUBLIC, AccessSourcer.IS_CLASS);
  /external/libcxx/include/
exception 194 is_class<typename remove_reference<_Tp>::type>::value &&
199 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
213 !is_class<typename remove_reference<_Tp>::type>::value ||
218 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
exception 198 is_class<typename remove_reference<_Tp>::type>::value &&
203 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
217 !is_class<typename remove_reference<_Tp>::type>::value ||
222 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
exception 198 is_class<typename remove_reference<_Tp>::type>::value &&
203 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
217 !is_class<typename remove_reference<_Tp>::type>::value ||
222 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
template_util.h 78 // is_class type_trait implementation.
102 struct is_class struct in namespace:i18n::addressinput
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
template_util.h 75 // is_class type_trait implementation.
99 struct is_class struct in namespace:i18n::phonenumbers
  /external/chromium_org/third_party/webrtc/base/
template_util.h 80 // is_class type_trait implementation.
104 struct is_class struct in namespace:rtc
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
template_util.h 82 // is_class type_trait implementation.
106 struct is_class struct in namespace:webrtc
  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 116 template <typename T> struct is_class { struct in namespace:test1
122 return is_class<T>::value;
  /external/llvm/include/llvm/Support/
type_traits.h 38 static const bool value = !std::is_class<T>::value;
59 !std::is_class<UnderlyingT>::value && // Filter conversion operators.
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
rvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
  /external/libcxx/test/utilities/optional/optional.inplace/
in_place_t.pass.cpp 37 static_assert((std::is_class<in_place_t>::value), "");
  /external/libcxx/test/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 36 static_assert((std::is_class<nullopt_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
rvalue_ref.pass.cpp 33 static_assert(!std::is_class<T>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.inplace/
in_place_t.pass.cpp 37 static_assert((std::is_class<in_place_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 36 static_assert((std::is_class<nullopt_t>::value), "");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
indirect_traits.hpp 10 # include <boost/type_traits/is_class.hpp>
178 , is_class<
192 , is_class<
244 is_class<V>

Completed in 3083 milliseconds

1 2 3 4 5 6