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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
   77 class CallEventRef : public IntrusiveRefCntPtr<const T> {
   79   CallEventRef(const T *Call) : IntrusiveRefCntPtr<const T>(Call) {}
   79   CallEventRef(const T *Call) : IntrusiveRefCntPtr<const T>(Call) {}
   80   CallEventRef(const CallEventRef &Orig) : IntrusiveRefCntPtr<const T>(Orig) {}
   82   CallEventRef<T> cloneWithState(ProgramStateRef State) const {
   83     return this->get()->template cloneWithState<T>(State);