HomeSort by relevance Sort by last modified time
    Searched defs:CalleeDecl (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 673 const Decl *CalleeDecl;
676 explicit CGCalleeInfo() : CalleeProtoTy(nullptr), CalleeDecl(nullptr) {}
677 CGCalleeInfo(const FunctionProtoType *calleeProtoTy, const Decl *calleeDecl)
678 : CalleeProtoTy(calleeProtoTy), CalleeDecl(calleeDecl) {}
680 : CalleeProtoTy(calleeProtoTy), CalleeDecl(nullptr) {}
681 CGCalleeInfo(const Decl *calleeDecl)
682 : CalleeProtoTy(nullptr), CalleeDecl(calleeDecl) {}
687 const Decl *getCalleeDecl() { return CalleeDecl; }
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 206 const CXXMethodDecl *CalleeDecl =
209 if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
212 else if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
216 FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
277 *this, CalleeDecl, This, UseVirtualCall);
    [all...]

Completed in 87 milliseconds