HomeSort by relevance Sort by last modified time
    Searched refs:__is_trivially_constructible (Results 1 - 10 of 10) sorted by null

  /external/clang/test/CodeGenCXX/
type-traits.cpp 6 bool b() { return __is_trivially_constructible(int, int, int); }
  /external/clang/test/CXX/special/class.copy/
p12-0x.cpp 7 static_assert(B == __is_trivially_constructible(T, T), "");
8 static_assert(B == __is_trivially_constructible(T, const T &), "");
9 static_assert(B == __is_trivially_constructible(T, T &&), "");
57 static_assert(!__is_trivially_constructible(MutableTemplateCtorMember, const MutableTemplateCtorMember &), "");
58 static_assert(__is_trivially_constructible(MutableTemplateCtorMember, MutableTemplateCtorMember &&), "");
64 static_assert(!__is_trivially_constructible(MutableTemplateCtorMember2, const MutableTemplateCtorMember2 &), "");
65 static_assert(__is_trivially_constructible(MutableTemplateCtorMember2, MutableTemplateCtorMember2 &&), "");
77 static_assert(__is_trivially_constructible(TNT, TNT), "");
78 static_assert(!__is_trivially_constructible(TNT, TNT &), "");
79 static_assert(__is_trivially_constructible(TNT, const TNT &), "")
    [all...]
  /external/clang/test/PCH/
cxx0x-default-delete.cpp 41 static_assert(__is_trivially_constructible(B, const B&), "");
42 static_assert(!__is_trivially_constructible(B, B&&), "");
43 static_assert(!__is_trivially_constructible(C, const C&), "");
44 static_assert(!__is_trivially_constructible(C, C&&), "");
cxx-traits.h 17 static const bool value = __is_trivially_constructible(T, Args...);
61 struct __is_trivially_constructible {}; // expected-warning {{made available}} struct in namespace:n
cxx-traits.cpp 61 bool _is_trivially_constructible_result = __is_trivially_constructible(int);
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 13 bool b2 = __is_trivially_constructible(Integer, Float, Bool);
  /external/clang/test/SemaCXX/
type-traits.cpp     [all...]
  /external/clang/test/CXX/drs/
dr4xx.cpp 1192 int check3[ __is_trivially_constructible(A, const A&) ? 1 : -1];
1194 int check4[ __is_trivially_constructible(B, const B&) ? 1 : -1];
dr3xx.cpp 337 int test[__is_trivially_constructible(S, const S&) ? 1 : -1];
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]

Completed in 122 milliseconds