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

References

include/llvm/Support/Casting.h
   58     return To::classof(&Val);
   77     return isa_impl<To, From>::doit(Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
tools/clang/include/clang/Driver/Compilation.h
  196   template <typename T, typename... Args> T *MakeAction(Args &&... Arg) {
  197     T *RawPtr = new T(std::forward<Args>(Arg)...);
  197     T *RawPtr = new T(std::forward<Args>(Arg)...);
tools/clang/lib/Driver/Driver.cpp
 2632               C.MakeAction<LinkJobAction>(DeviceActions, types::TY_CUDA_FATBIN);
 2714               C.MakeAction<LinkJobAction>(AL, types::TY_Image);
 2730             C.MakeAction<LinkJobAction>(CudaDeviceActions,
 2778         auto *DeviceLinkAction =
 2779             C.MakeAction<LinkJobAction>(LI, types::TY_Image);
 2919         auto *DeviceLinkAction =
 2920             C.MakeAction<LinkJobAction>(LI, types::TY_Image);
 3483     Action *LA = C.MakeAction<LinkJobAction>(LinkerInputs, types::TY_Image);
tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
 1278     if (A && isa<LinkJobAction>(A) && A->isDeviceOffloading(Action::OFK_HIP)) {
tools/clang/lib/Driver/ToolChains/Gnu.cpp
   86       if ((isa<AssembleJobAction>(JA) || isa<LinkJobAction>(JA)) &&
   92       if ((isa<AssembleJobAction>(JA) || isa<LinkJobAction>(JA)) &&