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

  /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/SemaObjCXX/
arc-type-traits.mm 169 TRAIT_IS_FALSE(__is_trivially_constructible, __strong id);
170 TRAIT_IS_FALSE(__is_trivially_constructible, __weak id);
171 TRAIT_IS_FALSE(__is_trivially_constructible, __autoreleasing id);
172 TRAIT_IS_TRUE(__is_trivially_constructible, __unsafe_unretained id);
174 TRAIT_IS_FALSE_2(__is_trivially_constructible, __strong id, __strong id);
175 TRAIT_IS_FALSE_2(__is_trivially_constructible, __strong id, __weak id);
176 TRAIT_IS_FALSE_2(__is_trivially_constructible, __strong id, __autoreleasing id);
177 TRAIT_IS_FALSE_2(__is_trivially_constructible, __strong id, __unsafe_unretained id);
178 TRAIT_IS_FALSE_2(__is_trivially_constructible, __strong id, __strong id&&);
179 TRAIT_IS_FALSE_2(__is_trivially_constructible, __strong id, __weak id&&)
    [all...]
  /external/clang/test/CodeGenCXX/
type-traits.cpp 6 bool b() { return __is_trivially_constructible(int, int, int); }
  /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/SemaCXX/
type-traits.cpp     [all...]
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 13 bool b2 = __is_trivially_constructible(Integer, Float, Bool);
  /external/libcxx/www/
type_traits_design.html 153 <td bgcolor="#80FF80"><tt>__is_trivially_constructible(T, U)</tt></td>
  /external/libcxx/include/
type_traits     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
type_traits     [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
type_traits     [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 325 int test[__is_trivially_constructible(S, const S&) ? 1 : -1];
    [all...]
  /external/clang/include/clang/Basic/
TokenKinds.def 436 TYPE_TRAIT_N(__is_trivially_constructible, IsTriviallyConstructible, KEYCXX)
  /external/clang/docs/
LanguageExtensions.rst     [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]

Completed in 323 milliseconds