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/LambdaCapture.h
   73   LambdaCapture(SourceLocation Loc, bool Implicit, LambdaCaptureKind Kind,
   78   LambdaCaptureKind getCaptureKind() const;
tools/clang/include/clang/Sema/DeclSpec.h
 2562     LambdaCaptureKind Kind;
 2571     LambdaCapture(LambdaCaptureKind Kind, SourceLocation Loc,
 2590   void addCapture(LambdaCaptureKind Kind,
tools/clang/lib/AST/ExprCXX.cpp
 1133                              LambdaCaptureKind Kind, VarDecl *Var,
 1162 LambdaCaptureKind LambdaCapture::getCaptureKind() const {
tools/clang/lib/Analysis/CloneDetection.cpp
  186   template <class Ty> void addData(const Ty &Data) {
tools/clang/lib/Parse/ParseExprCXX.cpp
  904     LambdaCaptureKind Kind = LCK_ByCopy;
tools/clang/lib/Sema/SemaLambda.cpp
 1755           LambdaCaptureKind Kind =
tools/clang/lib/Serialization/ASTReaderDecl.cpp
 1703       auto Kind = static_cast<LambdaCaptureKind>(Record.readInt());
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>