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/Expr.h
 1903   PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK,
 1920                                 QualType FNTy, IdentKind IK, StringLiteral *SL);
 1926   IdentKind getIdentKind() const {
 1945   static StringRef getIdentKindName(IdentKind IK);
 1946   static std::string ComputeName(IdentKind IK, const Decl *CurrentDecl);
tools/clang/include/clang/Sema/Sema.h
 4612                                  PredefinedExpr::IdentKind IK);
tools/clang/lib/AST/Expr.cpp
  609 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK,
  631                                        QualType FNTy, IdentKind IK,
  646 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) {
  670 std::string PredefinedExpr::ComputeName(IdentKind IK, const Decl *CurrentDecl) {
tools/clang/lib/Analysis/CloneDetection.cpp
  186   template <class Ty> void addData(const Ty &Data) {
tools/clang/lib/Sema/SemaExpr.cpp
 3252   PredefinedExpr::IdentKind IK;
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>