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

References

include/llvm/ADT/STLExtras.h
  108   Ret (*callback)(intptr_t callable, Params ...params) = nullptr;
  112   static Ret callback_fn(intptr_t callable, Params ...params) {
  129   Ret operator()(Params ...params) const {
include/llvm/DebugInfo/DWARF/DWARFContext.h
  348   static ErrorPolicy defaultErrorHandler(Error E);
  351          function_ref<ErrorPolicy(Error)> HandleError = defaultErrorHandler,
lib/DebugInfo/DWARF/DWARFContext.cpp
 1353 ErrorPolicy DWARFContext::defaultErrorHandler(Error E) {
 1355   return ErrorPolicy::Continue;
 1505                    function_ref<ErrorPolicy(Error)> HandleError)
 1532         ErrorPolicy EP = HandleError(createError(
 1534         if (EP == ErrorPolicy::Halt)
 1553         ErrorPolicy EP = HandleError(createError(
 1555         if (EP == ErrorPolicy::Halt)
 1657           if (HandleError(SymInfoOrErr.takeError()) == ErrorPolicy::Halt)
 1678               ErrorPolicy EP = HandleError(createError(
 1680               if (EP == ErrorPolicy::Halt)
 1689           ErrorPolicy EP = HandleError(
 1692           if (EP == ErrorPolicy::Halt)
 1817                      function_ref<ErrorPolicy(Error)> HandleError,
unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
 2539         return ErrorPolicy::Continue;
 2549         return ErrorPolicy::Halt;