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

References

tools/clang/tools/extra/clang-tidy/utils/ExceptionAnalyzer.cpp
   19   ThrownExceptions.insert(ExceptionType);
   27   ThrownExceptions.insert(Exceptions.begin(), Exceptions.end());
   44   ThrownExceptions.insert(Other.ThrownExceptions.begin(),
   44   ThrownExceptions.insert(Other.ThrownExceptions.begin(),
   45                           Other.ThrownExceptions.end());
   61   for (const Type *T : ThrownExceptions) {
   67     ThrownExceptions.erase(T);
   79   for (const Type *T : ThrownExceptions) {
   90     ThrownExceptions.erase(T);
   99   ThrownExceptions.clear();
  103   if (ThrownExceptions.size() == 0)
tools/clang/tools/extra/clang-tidy/utils/ExceptionAnalyzer.h
   57     ExceptionInfo &operator=(const ExceptionInfo &) = default;
   59     ExceptionInfo &operator=(ExceptionInfo &&) = default;
   98     const Throwables &getExceptionTypes() const { return ThrownExceptions; }