Searched refs:__is_base_of (Results 1 – 9 of 9) sorted by relevance
/external/clang/test/SemaCXX/ |
D | type-traits.cpp | 1654 int t[T(__is_base_of(Base, Derived))]; in isBaseOfT() 1658 int t[F(__is_base_of(Base, Derived))]; in isBaseOfF() 1666 { int arr[T(__is_base_of(Base, Derived))]; } in is_base_of() 1667 { int arr[T(__is_base_of(const Base, Derived))]; } in is_base_of() 1668 { int arr[F(__is_base_of(Derived, Base))]; } in is_base_of() 1669 { int arr[F(__is_base_of(Derived, int))]; } in is_base_of() 1670 { int arr[T(__is_base_of(Base, Base))]; } in is_base_of() 1671 { int arr[T(__is_base_of(Base, Derived3))]; } in is_base_of() 1672 { int arr[T(__is_base_of(Derived, Derived3))]; } in is_base_of() 1673 { int arr[T(__is_base_of(Derived2b, Derived3))]; } in is_base_of() [all …]
|
/external/clang/test/Index/ |
D | annotate-tokens.cpp | 4 __is_base_of(bonk, bonk); in test()
|
/external/clang/test/PCH/ |
D | cxx-traits.h | 23 struct __is_base_of {}; // expected-warning {{made available}} struct
|
D | cxx-traits.cpp | 21 bool _is_base_of_result = __is_base_of(int, int);
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | p5.cpp | 317 __is_base_of(Types, T); // expected-error{{expression contains unexpanded parameter pack 'Types'}} in test_unexpanded_exprs() 318 __is_base_of(T, Types); // expected-error{{expression contains unexpanded parameter pack 'Types'}} in test_unexpanded_exprs()
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 419 TYPE_TRAIT_2(__is_base_of, IsBaseOf, KEYCXX)
|
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 790 REVERTIBLE_TYPE_TRAIT(__is_base_of); in ParseCastExpression()
|
/external/clang/docs/ |
D | LanguageExtensions.rst | 996 * ``__is_base_of`` (GNU, Microsoft)
|
/external/libcxx/include/ |
D | type_traits | 828 : public integral_constant<bool, __is_base_of(_Bp, _Dp)> {};
|