reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/DataCollection.h
   54     std::is_integral<Type>::value || std::is_enum<Type>::value ||
   54     std::is_integral<Type>::value || std::is_enum<Type>::value ||
   55     std::is_convertible<Type, size_t>::value // for llvm::hash_code
   57 addDataToConsumer(T &DataConsumer, Type Data) {
tools/clang/include/clang/AST/ExprCXX.h
 2639   TypeTraitExpr(QualType T, SourceLocation Loc, TypeTrait Kind,
 2657                                SourceLocation Loc, TypeTrait Kind,
 2666   TypeTrait getTrait() const {
tools/clang/include/clang/Sema/Sema.h
 5695   ExprResult ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
 5698   ExprResult BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
tools/clang/lib/AST/ExprCXX.cpp
 1675 TypeTraitExpr::TypeTraitExpr(QualType T, SourceLocation Loc, TypeTrait Kind,
 1705                                      TypeTrait Kind,
tools/clang/lib/AST/StmtPrinter.cpp
 2151 static const char *getTypeTraitName(TypeTrait TT) {
tools/clang/lib/Analysis/CloneDetection.cpp
  186   template <class Ty> void addData(const Ty &Data) {
tools/clang/lib/Parse/ParseExprCXX.cpp
 3231 static TypeTrait TypeTraitFromTokKind(tok::TokenKind kind) {
tools/clang/lib/Sema/SemaExprCXX.cpp
 4349 static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, TypeTrait UTT,
 4502 static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT,
 4904 static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
 4907 static bool evaluateTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc,
 5070 static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
tools/clang/unittests/AST/DataCollectionTest.cpp
   32   template <class T> void addData(const T &Data) {
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>