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

1 2

  /external/chromium/base/
template_util_unittest.cc 57 EXPECT_TRUE(is_class<AStruct>::value);
58 EXPECT_TRUE(is_class<AClass>::value);
60 EXPECT_FALSE(is_class<AnEnum>::value);
61 EXPECT_FALSE(is_class<int>::value);
62 EXPECT_FALSE(is_class<char*>::value);
63 EXPECT_FALSE(is_class<int&>::value);
64 EXPECT_FALSE(is_class<char[3]>::value);
template_util.h 71 // is_class type_trait implementation.
95 struct is_class struct in namespace:base
bind_helpers.h 178 : UnsafeBindtoRefCountedArgHelper<is_class<T>::value, T> {
  /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];
  /external/clang/test/Lexer/
has_feature_type_traits.cpp 53 #if __has_feature(is_class)
54 int is_class();
56 // CHECK: int is_class();
  /external/llvm/include/llvm/Support/
type_traits.h 39 // the is_class template below. They cannot be located inside
40 // is_class because doing so causes at least GCC to think that
44 // important to make the is_class<T>::value idiom zero cost. it
52 struct is_class struct in namespace:llvm
54 // is_class<> metafunction due to Paul Mensonides (leavings@attbi.com). For
74 static const bool value = !is_class<T>::value;
171 value = (!is_class<UnderlyingT>::value && !is_pointer<UnderlyingT>::value &&
199 = is_class<Base>::value && is_class<Derived>::value &&
CommandLine.h 386 struct OptionValue : OptionValueBase<DataType, is_class<DataType>::value> {
    [all...]
YAMLTraits.h 250 template <typename T, bool Enabled = llvm::is_class<T>::value>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
rvalue_ref.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
void.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
array.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
class.pass.cpp 30 static_assert( std::is_class<T>::value, "");
enum.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
floating_point.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
function.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
integral.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
member_function_pointer.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
member_object_pointer.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
pointer.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
union.pass.cpp 30 static_assert(!std::is_class<T>::value, "");
  /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/clang/include/clang/Analysis/Support/
BumpVector.h 63 if (llvm::is_class<T>::value) {
133 if (llvm::is_class<T>::value) {
226 if (llvm::is_class<T>::value) {
  /external/clang/include/clang/AST/
ASTVector.h 72 if (llvm::is_class<T>::value) {
142 if (llvm::is_class<T>::value) {
384 if (llvm::is_class<T>::value) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
random.h 230 typename std::enable_if<std::is_class<_Sseq>::value>::type
446 typename std::enable_if<std::is_class<_Sseq>::value>::type
655 typename std::enable_if<std::is_class<_Sseq>::value>::type
    [all...]

Completed in 353 milliseconds

1 2